Skip to content

Instantly share code, notes, and snippets.

@dgershman
Last active December 27, 2015 17:09
Show Gist options
  • Select an option

  • Save dgershman/7360276 to your computer and use it in GitHub Desktop.

Select an option

Save dgershman/7360276 to your computer and use it in GitHub Desktop.
My aliases
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