Advertisement
nickwoodhams

Bash Aliases

Jan 15th, 2013
585
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.47 KB | None | 0 0
  1. # These aliases can be added to your ~/.bashrc file.
  2. alias f="sudo find / -mount -name"
  3. alias a="sudo service apache2 restart"
  4. alias sl="sudo tail -f /var/log/syslog"
  5. alias n="sudo service nginx restart"
  6. alias s="sudo service smbd restart; sudo service nmbd restart;"
  7. alias u="sudo killall uwsgi"
  8. alias v="source venv/bin/activate"
  9. alias monitor="tcptrack -i eth0"
  10. alias myip="wget http://nwdesign.us/myip.php -O - -q ; echo"
  11. alias webserver="python -m SimpleHTTPServer"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement