Which one alias would you choose to keep if your .bash_alias/.bashrc/etc could only contain one line?
|
feedback
|
|
alias ls="ls --color" | |||
feedback
|
|
Not technically an alias, but it removes the need for a majority of them..
| |||
|
feedback
|
|
alias s="cd .." Silly,but you cd all the time :) | |||||||||
feedback
|
So I can find past commands very quickly by just typing
As well as
to quickly find out, if a specific process is still running. | |||
|
feedback
|
To clean unnecessary files from the current folder. | |||
|
feedback
|
|
My favourite is probably:
For more aliases, my complete bash profile is here | ||||
feedback
|
|
here's my Windows "alias" that I put on all the Windows computers I use: c:\windows\ls.bat
| |||
|
feedback
|
I like it when destructive commands have undo buttons. It also makes deleting happen faster, and I don't have to specify | ||||
feedback
|
The first thing I do when entering a new server; Gives much better readable dirlistings :) | |||
|
feedback
|
How many times a day does your left hand get the "s" out before your right hand can get the "l" out? :) | |||||
feedback
|
|
alias webshare='python -c "import SimpleHTTPServer;SimpleHTTPServer.test()"' | |||||||
feedback
|
|
I use dvorak keyboard, so my most important one is:
my other favorite is:
Which lets me type random crap to myself without worrying whether it will ever get saved... | |||
|
feedback
|
|
My most frequently used ones:
The last on is just a joke | |||
|
feedback
|
| ||||
|
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. | |||||
feedback
|
| |||||
feedback
|
|
Found another handy one here on stackoverflow from Sanjaya R:
That's like See the details on: http://stackoverflow.com/questions/941338/shell-script-how-to-pass-command-line-arguments-to-an-unix-alias/941390#941390 | |||
|
feedback
|
|
I have found that every time I edit my
Similarly, I added
Also, for zsh users, suffix alias are very useful, for example:
so when you type | |||
|
feedback
|