file:replace_all_occurrences_of_string_within_a_file
This is an old revision of the document!
File - Replace all occurrences of string within a file
Change all references of the word dog to cat in the file:
sed -e 's/dog/cat/g' filename
This uses sed to stream edit files, which means change them on the fly.
# See more examples here http://www.pantz.org/software/shell/shelloneliners.html
file/replace_all_occurrences_of_string_within_a_file.1468163931.txt.gz ยท Last modified: 2020/07/15 09:30 (external edit)