mirror of
https://github.com/cheat/cheat.git
synced 2024-11-22 05:51:35 +01:00
chead sed to remove empty lines
This commit is contained in:
parent
4960f45f6f
commit
53a2a616d0
@ -9,3 +9,6 @@ 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'
|
||||
|
Loading…
Reference in New Issue
Block a user