mirror of
https://github.com/Erreur32/cheat.git
synced 2024-12-22 21:52:12 +01:00
Merge pull request #38 from carlosp420/master
cheat sed, remove leading spaces with regex
This commit is contained in:
commit
eff1b8136c
1 changed files with 3 additions and 0 deletions
|
@ -6,3 +6,6 @@ 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
|
||||
|
|
Loading…
Reference in a new issue