Just had a look at the .bashrc of 8.10 and what can I say? There's more stuff in there than you can shake a stick at! Not sure how useful it all is...
Anyway, I wondered what your ideal .bashrc looks like.
Here a couple of additions I find useful:
To activate your new .bashrc simply do a
Please post any suggestions, improvements, whatever!
Anyway, I wondered what your ideal .bashrc looks like.
Here a couple of additions I find useful:
# my additions
alias ..='cd ..'
alias lla='ls -la'
alias update='sudo aptitude update'
alias upgrade='sudo aptitude safe-upgrade'
alias install='sudo aptitude install'
alias search='aptitude search'
alias remove='sudo aptitude remove'
alias purge='sudo aptitude remove --purge'
alias show='aptitude show -v'
alias clean='sudo aptitude clean'
alias aclean='sudo aptitude autoclean'
alias df='df -h'
alias blkid='blkid -L'
alias ..='cd ..'
alias lla='ls -la'
alias update='sudo aptitude update'
alias upgrade='sudo aptitude safe-upgrade'
alias install='sudo aptitude install'
alias search='aptitude search'
alias remove='sudo aptitude remove'
alias purge='sudo aptitude remove --purge'
alias show='aptitude show -v'
alias clean='sudo aptitude clean'
alias aclean='sudo aptitude autoclean'
alias df='df -h'
alias blkid='blkid -L'
Code:
source .bashrc
Comment