mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-16 08:58:35 +01:00
9 lines
298 B
Text
9 lines
298 B
Text
|
To replace all occurrences of "day" with "night" and write to stdout:
|
||
|
sed s/day/night file.txt
|
||
|
|
||
|
To replace all occurrences of "day" with "night" within file.txt:
|
||
|
sed s/day/night file.txt > file.txt
|
||
|
|
||
|
To replace all occurrences of "day" with "night" on stdin:
|
||
|
echo 'It is daytime' | sed s/day/night/
|