Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Use alias to make your own shortcuts' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Use alias to make your own shortcuts
Authored by: Anonymous on Feb 26, '02 05:35:59AM

Spend some time to set up your alias and working in the Terminal will be much more pleasent. I use Bash and here are some of the alias I have put in my .bashrc.

alias .='pwd'
alias ..='cd ..'
alias cd..='cd ..'
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
alias l='ls -laF'
alias ll='ls -laF | less'
alias c='clear'



[ Reply to This | # ]
;-)
Authored by: dperetti on Feb 26, '02 06:24:33AM

Any sufficiently advanced bug is indistinguishable from a feature.



[ Reply to This | # ]