Re: Common bash aliases

2008-01-08 Thread Stephen P Rufle
The following is the summarization from what I got from the group http://wiki.sabayonlinux.org/index.php?title=Tips#Useful_aliases Feel free to either edit it directly on their site or reply and I will try to modify. --- PLUG-discuss mailing list

Common bash aliases

2008-01-03 Thread Stephen P Rufle
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

Re: Common bash aliases

2008-01-03 Thread Jared Anderson
On 1/3/08, Stephen P Rufle [EMAIL PROTECTED] 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

Re: Common bash aliases

2008-01-03 Thread Jeremy C. Reed
alias ls='ls -aF --color=always' I commonly run unalias ls because in some environments I work in, the consoles make it hard to read directory listings in many colors. alias rm='rm -i' alias cp='cp -i' alias mv='mv -i' When adding to your Tips document, be sure to add a comment that many