Difference between revisions of "Bash oneliners"

From UVOO Tech Wiki
Jump to navigation Jump to search
(Created page with "``` grep -rl oldtext . | xargs sed -i 's/oldtext/newtext/g' ```")
(No difference)

Revision as of 23:38, 26 August 2021

grep -rl oldtext . | xargs sed -i 's/oldtext/newtext/g'