Last active
August 29, 2015 14:18
-
-
Save joshbeckman/5c480a3f80f63b5d3945 to your computer and use it in GitHub Desktop.
Custom bash/shell functions I use
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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