I’m not sure if this is good form or not, but I’ve made some aliases to take me to some frequently used folders on my hard drive and my Dropbox. Additionally, an alias to the handy dandy Dropbox python script. Also added the human readable switch to ll.
[travnewmatic@localhost ~]$ alias
alias box=’python /home/travnewmatic/Dropbox/dropbox.py’
alias doc=’cd /home/travnewmatic/Documents/’
alias down=’cd /home/travnewmatic/Downloads/’
alias drop=’cd /home/travnewmatic/Dropbox/’
alias egrep=’egrep –color=auto’
alias fgrep=’fgrep –color=auto’
alias grep=’grep –color=auto’
alias home=’cd /home/travnewmatic/’
alias l.=’ls -d .* –color=auto’
alias linux=’cd /home/travnewmatic/Dropbox/Linux/’
alias ll=’ls -l –color=auto -h’
alias ls=’ls –color=auto’
alias vi=’vim’
alias which=’alias | /usr/bin/which –tty-only –read-alias –show-dot –show-tilde’
[travnewmatic@localhost ~]$ cat .bashrc
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# Uncomment the following line if you don’t like systemctl’s auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
alias doc=’cd ~/Documents/’
alias down=’cd ~/Downloads/’
alias drop=’cd ~/Dropbox/’
alias egrep=’egrep –color=auto’
alias fgrep=’fgrep –color=auto’
alias grep=’grep –color=auto’
alias home=’cd ~’
alias l.=’ls -d .* –color=auto’
alias linux=’cd ~/Dropbox/Linux/’
alias ll=’ls -l –color=auto -h’
alias ls=’ls –color=auto’
alias vi=’vim’
alias which=’alias | /usr/bin/which –tty-only –read-alias –show-dot –show-tilde’
alias box=’python ~/Dropbox/dropbox.py’
alias music=’cd ~/Music’
Leave a Reply