wickywills
6/1/2018 - 9:21 AM

Useful aliases

Just a list of usefull aliases to throw into your ~/.bash_profile.

  1. nano ~/.bash_profile
  2. Paste in the following:
alias ll='ls -lah && pwd'
alias wpdb='cat wp-config.php | grep DB'
alias ..='cd .. && ll'
alias ...='cd ../../../ && ll'
alias ....='cd ../../../../ && ll'
alias .....='cd ../../../../ && ll'
  1. source ~/.bash_profile to load your new settings