mirror of
https://github.com/cheat/cheat.git
synced 2024-11-16 08:58:28 +01:00
e6e4b1e420
Not using the 'g' (global) flag only replaces the first match on a line. The 'g' flag will replace all matches.
8 lines
301 B
Text
8 lines
301 B
Text
To replace all occurrences of "day" with "night" and write to stdout:
|
|
sed 's/day/night/g' file.txt
|
|
|
|
To replace all occurrences of "day" with "night" within file.txt:
|
|
sed -i 's/day/night/g' file.txt
|
|
|
|
To replace all occurrences of "day" with "night" on stdin:
|
|
echo 'It is daytime' | sed 's/day/night/g'
|