mirror of https://github.com/cheat/cheat.git
9 lines
307 B
Plaintext
9 lines
307 B
Plaintext
# 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'
|