Filter out lines containing 'spam': sed '/spam/d' somefile | Capitalize all vowels in a file: sed 'y/aeiou/AEIOU/' somefile
Filter out lines containing 'spam': sed '/spam/d' somefile
Capitalize all vowels in a file: sed 'y/aeiou/AEIOU/' somefile
Capitalize all vowels in a file: sed 'y/aeiou/AEIOU/' somefile
Comments
Post a Comment