mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-01 05:21:06 +01:00
6b8ecd6b5c
@zhujian0805 contributed some excellent cheatsheets in #185, but some binary files seem to have gotten mixed into the commit as well. This commit cherry-picks the cheatsheet file changes from that PR while leaving behind the cruft. Also performed minor editing on some of the cheatsheets.
18 lines
516 B
Plaintext
18 lines
516 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'
|
|
|
|
# To remove leading spaces
|
|
sed -i -r 's/^\s+//g' file.txt
|
|
|
|
# To remove empty lines and print results to stdout:
|
|
sed '/^$/d' file.txt
|
|
|
|
# To replace newlines in multiple lines
|
|
sed ':a;N;$!ba;s/\n//g' file.txt
|