Skip to content

Instantly share code, notes, and snippets.

@seliverstov-maxim
Last active August 29, 2015 14:15
Show Gist options
  • Select an option

  • Save seliverstov-maxim/5a8185f16db8ec532851 to your computer and use it in GitHub Desktop.

Select an option

Save seliverstov-maxim/5a8185f16db8ec532851 to your computer and use it in GitHub Desktop.
Find and replace by project
grep -rl --include="*.php" "old_word" ./ | xargs sed -i 's/old_word/new_word/g'
// grep with OR condition and sort result
grep 'foo\|bar' | sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment