mirror of
https://github.com/cheat/cheat.git
synced 2025-09-03 02:28:29 +02:00
Package with distutils
Created cheatsheets package to store the default sheets.
This commit is contained in:
8
cheatsheets/sed
Normal file
8
cheatsheets/sed
Normal file
@ -0,0 +1,8 @@
|
||||
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/
|
Reference in New Issue
Block a user