mirror of
https://github.com/cheat/cheat.git
synced 2024-11-13 23:51:09 +01:00
Merge pull request #25 from adelviscio/patch-1
Added global flag, replaced redundant redirection.
This commit is contained in:
commit
6d456d147d
1 changed files with 3 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
|||
To replace all occurrences of "day" with "night" and write to stdout:
|
||||
sed s/day/night file.txt
|
||||
sed 's/day/night/g' file.txt
|
||||
|
||||
To replace all occurrences of "day" with "night" within file.txt:
|
||||
sed s/day/night file.txt > 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/
|
||||
echo 'It is daytime' | sed 's/day/night/g'
|
||||
|
|
Loading…
Reference in a new issue