up vote 3 down vote favorite
5
share [g+] share [fb]

Which one alias would you choose to keep if your .bash_alias/.bashrc/etc could only contain one line?

link|improve this question
feedback

20 Answers

alias ls="ls --color"

link|improve this answer
If you think that "color" is actually spelled "colour", try this: ubuntuforums.org/showthread.php?t=684239 – Ryan Thompson Jul 2 '10 at 4:09
feedback

Not technically an alias, but it removes the need for a majority of them..

source /etc/bash_completion
link|improve this answer
feedback

alias s="cd .."

Silly,but you cd all the time :)

link|improve this answer
2  
Why not just alias '..="cd .."'? – Yaba Sep 16 '08 at 9:17
1  
If you use zsh, you can 'setopt autocd' and then use '..' to 'cd ..', as well as 'some/directory' to 'cd some/directory'. – Bryan Ward Jan 19 '11 at 17:22
feedback
alias histgrep=history | grep

So I can find past commands very quickly by just typing

histgrep <part of command>

As well as

alias psgrep=ps -ef | grep

to quickly find out, if a specific process is still running.

link|improve this answer
Couldn't you just use 'pgrep', or 'alias pgrep=pgrep -l $1'? – Bryan Ward Jan 19 '11 at 17:26
feedback
alias clean='rm -rf "#"* "."*~ *~ *.bak *.dvi *.aux *.log'

To clean unnecessary files from the current folder.

link|improve this answer
feedback

My favourite is probably:

alias ff=find . -name $1

For more aliases, my complete bash profile is here

link|improve this answer
If you want to be on-topic per the question requirements, you better edit your answer and turn it into a one-liner. – tzot Sep 16 '08 at 13:10
feedback

here's my Windows "alias" that I put on all the Windows computers I use:

c:\windows\ls.bat

dir $1 $2 $3 $4
link|improve this answer
feedback
sudo apt-get install trash-cli; alias rm=trash

I like it when destructive commands have undo buttons. It also makes deleting happen faster, and I don't have to specify -r to delete recursively.

link|improve this answer
Ironically, if you do this, then mv becomes the most dangerous command. I wish there was a way to trash files instead of overwriting them with mv. – Ryan Thompson Aug 25 '10 at 1:58
feedback

alias ll="ls -al --color=auto"

The first thing I do when entering a new server; Gives much better readable dirlistings :)

link|improve this answer
feedback
alias sl=ls

How many times a day does your left hand get the "s" out before your right hand can get the "l" out? :)

link|improve this answer
similarly: alias mroe=more – Brian Postow Feb 19 '09 at 21:54
Or just install the "steam locomotive" package from your package manager. Often abbreviated "sl". – Ryan Thompson Jun 25 '10 at 8:27
feedback

alias webshare='python -c "import SimpleHTTPServer;SimpleHTTPServer.test()"'

link|improve this answer
That is pretty neat. – Ryan Thompson Nov 5 '09 at 3:03
1  
alias webshare='python -m SimpleHTTPServer' works, too. – Boldewyn Aug 13 '10 at 13:56
feedback

I use dvorak keyboard, so my most important one is:

alias no=ls -f

my other favorite is:

alias devn='cat > /dev/nul'

Which lets me type random crap to myself without worrying whether it will ever get saved...

link|improve this answer
feedback

My most frequently used ones:

alias la='ls -a -l'
alias ll='ls -l'
alias cats='konqueror http:'//icanhazcheezburger.com''

The last on is just a joke

link|improve this answer
Did you mean alias cats="lynx http://ascii.icanhazcheezburger.com"? – takeshin Sep 12 '10 at 7:27
feedback
#Useful find command to grep recursively for a string, usage "f blah"
alias f='find . | tr "\n" "\0" | xargs -0 grep'

#Some handy backtracking commands
alias ..='cd ..'
alias ...='cd ../..'
alias ....='cd ../../..'
alias .....='cd ../../../..'

#Reload .bashrc good for when working with new aliases :-)
alias resource='source ~/.bashrc'

#Good if on cygwin and have notpad++ installed
alias edit='"/cygdrive/c/program files/notepad++/notepad++.exe"'

#This one prints out a treelike structure of directories.
alias tree='ls -R | grep ":$" | sed -e "s/:$//" -e "s/[^-][^\/]*\//--/g" -e "s/^/   /" -e s/-/|/"'
link|improve this answer
feedback
alias py='python2.5 -O'
link|improve this answer
feedback
alias ss="script/server"

Clearly, I work in Rails most of the time. :)

link|improve this answer
feedback

alias prompt='PS1='\''[\e[7m]\u@\h \A $\w>[\e[27m] '\'''

It's just too difficult to type each time you log on, and all the other dbas don't like the oracle user to have a non-default prompt.

link|improve this answer
Can you not set PS1 in your .bashrc or whatever startup file you use? (Say, export PS1="....")? – dbr Sep 16 '08 at 9:38
He already stated that the others using the same logon dislike non-default prompts. – tzot Sep 16 '08 at 13:08
feedback
### SSH That tunnels X stuff (even through NAT)
alias 'xssh'='ssh -X -C -Y'
link|improve this answer
1  
I always found ~/.ssh/config a much better place for configuring various hosts and their options – tzot Sep 16 '08 at 13:09
feedback

Found another handy one here on stackoverflow from Sanjaya R:

alias mkcd='_(){ mkdir $1; cd $1; }; _'

That's like mkdir foo; cd foo by just calling mkcd foo.

See the details on: http://stackoverflow.com/questions/941338/shell-script-how-to-pass-command-line-arguments-to-an-unix-alias/941390#941390

link|improve this answer
feedback

I have found that every time I edit my ~/.zshrc file (or ~/.bashrc, for bash users), that the next thing I always do is source it. So i made an alias:

export EDITOR='/usr/bin/vim'
alias zshrc='$EDITOR ~/.zshrc && source ~/.zshrc'

Similarly, I added

alias vimrc='$EDITOR ~/.vimrc'

Also, for zsh users, suffix alias are very useful, for example:

alias -s py=$EDITOR
alias -s rb=$EDITOR

so when you type test.py or foo.rb, it will expand to $EDITOR test.py or $EDITOR foo.rb.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.