commandlinefu.com is the place to record those command-line gems that you return to again and again.
Delete that bloated snippets file you've been using and share your personal repository with the world. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.
If you have a new feature suggestion or find a bug, please get in touch via http://commandlinefu.uservoice.com/
You can sign-in using OpenID credentials, or register a traditional username and password.
First-time OpenID users will be automatically assigned a username which can be changed after signing in.
Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.
» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10
Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):
Subscribe to the feed for:
There are 2 alternatives - vote for the best!
In bash, this turns on auto cd. If a command is just a directory name, it cd's into that directory.
Alias two dots to move to parent directory. Put it into your .bashrc or .profile file.
Alias a single character 'b' to move to parent directory. Put it into your .bashrc or .profile file.
Using "cd .." is one of the most repetitive sequence of characters you'll in the command line. Bring it down to two keys 'b' and 'enter'.
It stands for "back"
Also useful to have multiple:
alias b='cd ../'
alias bb='cd ../../'
alias bbb='cd ../../../'
alias bbbb='cd ../../../../'
Use ZSH instead of bash, typing .. will move you up one directory, without the need to alias it.
If you can do better, submit your command here.
You must be signed in to comment.
Bash: "cd -" - done.
Or cd .. alone. The proposed command is like killing a robin with a bazooka :)
Am I missing the point?
cd .. = Go up one directory, from where I am.
cd - = Go back to my previous cwd, no matter where it was
cd = Go to the home directory of the current user
The proposed command seems to be the only one that will "move to parent directory" i.e. one directory up from where I am.
Did you all read the command and think about it before you slammed this person with 12 negative votes???
I see the first comment ("cd -") is totally off-topic, but don't be hungry it may happen...
I am afraid the reason of (currently) -12 is because the command is a copy exact of eimantas' command (currently +2), did you see? it was written in 2009!
it get's even more useful with plenty of them:
alias ..='cd ..'alias ...='cd ../..'alias ....='cd ../../..'alias .....='cd ../../../..'Careful! If you are a user of FOR loops, you could shoot yourself in the foot here.
for I in {1..10} do; scp somefile.conf me@server$i; done@Karunamon:
'..' only works when it's at the start of command
this is a dup of http://www.commandlinefu.com/commands/view/1546/quicker-move-to-parent-directory#comment