Aliases etc.
# Git alias
alias gs="git status"
alias ga="git add"
alias glog="git log"
alias gcm="git commit -m"
alias gd="git diff"
# Mongodb alias
alias startmongodb="sudo service mongod start"
alias stopmongodb="sudo service mongod stop"
alias restartmongodb="sudo service mongod restart"
# Find stuff
alias greplinesrec="grep -rin "
# use nmap to find hosts in network (http://askubuntu.com/questions/425907/nmap-in-ubuntu-13-10)
nmap -sn -oG ip.txt 10.0.1.1-255
# use arp
arp -a