Skip to content

Instantly share code, notes, and snippets.

@w-jerome
Last active December 2, 2019 14:14
Show Gist options
  • Save w-jerome/aec50a9b247c8e18141ec48a9334d42d to your computer and use it in GitHub Desktop.
Save w-jerome/aec50a9b247c8e18141ec48a9334d42d to your computer and use it in GitHub Desktop.
Terminal - Search and replace (sql url domaine replace)
# "www." to "local."
sed 's/www.mysite.fr/local.mysite.fr/g' mysql.sql > mysql-new.sql
# HTTPS to HTTP
sed 's/https:\/\/www.mysite.fr/http:\/\/www.mysite.fr/g' mysql.sql > mysql-new.sql
# If bug "sed: RE error: illegal byte sequence"
LC_CTYPE=C sed 's/www.mysite.fr/local.mysite.fr/g' mysql.sql > mysql-new.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment