Skip to content

Instantly share code, notes, and snippets.

@xbin999
Created September 18, 2014 07:45
Show Gist options
  • Save xbin999/563b35592714d3625e41 to your computer and use it in GitHub Desktop.
Save xbin999/563b35592714d3625e41 to your computer and use it in GitHub Desktop.
replace specified string in files
grep -- "- tools" *.md | awk -F"[:]" '{print $1;}'|xargs sed -ig 's/-\ tools/-\ tool/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment