Skip to content

Instantly share code, notes, and snippets.

@tomsapps
Created September 21, 2016 16:09
Show Gist options
  • Select an option

  • Save tomsapps/0a41bc7f11e3a0656d402fd7133ea551 to your computer and use it in GitHub Desktop.

Select an option

Save tomsapps/0a41bc7f11e3a0656d402fd7133ea551 to your computer and use it in GitHub Desktop.
search by word in current directory.
wer() {
if [ ! $1 ]
then
echo "needs a search-query"
else
grep -r -C2 -n $1 .
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment