Skip to content

Instantly share code, notes, and snippets.

@joshbeckman
Last active August 29, 2015 14:18
Show Gist options
  • Save joshbeckman/5c480a3f80f63b5d3945 to your computer and use it in GitHub Desktop.
Save joshbeckman/5c480a3f80f63b5d3945 to your computer and use it in GitHub Desktop.
Custom bash/shell functions I use
hello()
{
echo "Hello $1, let us be a friend." ;
}
grepr()
{
echo "";
echo ""; # space things out a bit for scanning
grep -r $1 $2 --color -n;
echo "";
echo "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment