Created
March 14, 2012 06:44
-
-
Save juque/2034680 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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