On 1/3/08, Stephen P Rufle <stephen.p.rufle@cox.net> wrote:
I Googled  "common bash aliases"

http://www.hypexr.org/bash_tutorial.php

seemed to have a short list

alias ls='ls -aF --color=always'
alias ll='ls -l'
alias search=grep
alias mcd='mount /mnt/cdrom'
alias ucd='umount /mnt/cdrom'
alias mc='mc -c'
alias ..='cd ..'
alias ...='cd ../..'

The first 2 and the last 2 I have seen used by Matt G while helping me
at my house. I would like to know what are other people's favorites.

I will most likely take the list and add something about common aliases to
http://wiki.sabayonlinux.org/index.php?title=Tips
---------------------------------------------------
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss



My customizations:

alias ll='ls -lh'
alias l.='ls -a'
alias ll.='ls -al'

alias sl='ls'
alias modprobe='modprobe -v'

alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
alias vi='vim'

alias ps='ps x'
alias df='df -h'

alias glxgears='glxgears -printfps'