segunda-feira, 17 de fevereiro de 2014

Unix Command - How to replace some text with another - sed

Para substituir um texto por outro
To replace some text with another

*Unix:

input file:
file_name.txt
this is the text test

command:

sed 's/text/another/g' file_name.txt > new_file_name.txt 

result:

new_file_name.txt

this is the another test


Nenhum comentário:

Postar um comentário