Skip to content

Instantly share code, notes, and snippets.

@juque
Created March 14, 2012 06:44
Show Gist options
  • Select an option

  • Save juque/2034680 to your computer and use it in GitHub Desktop.

Select an option

Save juque/2034680 to your computer and use it in GitHub Desktop.
# Cambiando el dominino a una instalaci—n Wordpress
# =================================================
# se cuentan las ocurrencias
$ grep -o 'www.ceramicaverea.info' es.sql | wc -w
1118
# se saca una copia (juan segura veranea en el caribe)
$ cp es.sql gl.sql
# se busca y se reemplaza el nuevo dominio
$ perl -pi -e 's/www.ceramicaverea.info/gl.ceramicaverea.info/g' gl.sql
# se verifica el cambio contando las ocurrencias con el antiguo dominio
$ grep -o 'www.ceramicaverea.info' gl.sql | wc -w
0
# se cuenta las ocurrencias con el dominio actual
$ grep -o 'gl.ceramicaverea.info' gl.sql | wc -w
1118
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment