Last active
December 27, 2015 17:09
-
-
Save dgershman/7360276 to your computer and use it in GitHub Desktop.
My aliases
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
| function func_portinuse() { | |
| lsof -n -i4TCP:$1 | grep LISTEN | |
| } | |
| function func_findall() { | |
| grep -RnisI $1 * | |
| } | |
| alias ll='ls -al' | |
| alias h='history' | |
| alias c='clear' | |
| alias findall=func_findall | |
| alias portinuse=func_portinuse |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment