TechTaco
New
Home
Blog
GitHub
History
Clear
Sed
Powered by
#
Useful Sed Snippets and Oneliners
#
Update multiple files with find + sed
Remove lines matching pattern(gimmick) from Markdown files
find
.
-name
"*.md"
-type f
|
xargs
-o
sed
-i
''
'/gimmick/d'
Contents
Update multiple files with find + sed