mirror of
https://github.com/cheat/cheat.git
synced 2025-09-05 19:42:55 +02:00
Cherry-picking changes from #185
@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.
This commit is contained in:
@ -10,5 +10,8 @@ echo 'It is daytime' | sed 's/day/night/g'
|
||||
# To remove leading spaces
|
||||
sed -i -r 's/^\s+//g' file.txt
|
||||
|
||||
# Remove empty lines and print results to stdout:
|
||||
# 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
|
||||
|
Reference in New Issue
Block a user