mirror of
https://github.com/cheat/cheat.git
synced 2024-11-22 05:51:35 +01:00
Removed cat
Piping cat to sed is an extra step. Sed can handle file arguments.
This commit is contained in:
parent
16244be4ea
commit
93bda9dc20
@ -10,5 +10,5 @@ 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
|
||||
cat file.txt | sed '/^$/d'
|
||||
# Remove empty lines and print results to stdout:
|
||||
sed '/^$/d' file.txt
|
||||
|
Loading…
Reference in New Issue
Block a user