Skip to content

Instantly share code, notes, and snippets.

@amercier
Created October 13, 2013 12:12
Show Gist options
  • Save amercier/6961604 to your computer and use it in GitHub Desktop.
Save amercier/6961604 to your computer and use it in GitHub Desktop.
User bash aliases for Mac OS X Mountain Lion
#!/bin/bash
# Apache
alias apache-restart='sudo apachectl -k restart'
alias apache-start='sudo apachectl -k start'
alias apache-stop='sudo apachectl -k stop'
# Misc
alias show-ports="sudo lsof -i -P | egrep '^[^ ]+'"
alias show-open-ports="sudo lsof -i -P | grep LISTEN | egrep '^[^ ]+'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment