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:
Sometimes you have to browse your way through a lot of sub-directories. This command cd to the next sub-directory in alphabetical order. For example, if you have the directories "lectures/01-intro", "lectures/02-basic", "lectures/03-advanced" and so on, and your PWD is "02-basic", it jumps to "03-advanced".
There are 4 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
Wow.
This isn't working for me. Can anyone tell me why? I'm using bash on both CygWin and Ubuntu. It doesn't work in either place.
Okay, got it now. The done is missing from the end of the command sequence. "...fi; done" should be on the end.
about half the characters:
cd ../"$(ls -AF ..|grep '/'|grep -A1 `basename $PWD`|tail -n 1)"my ls(1) at least says its already sorted alphabetically if no flags are given and since files can't have '/' in their names...
ls -v or sort -v would be appropriated here.
xizdaqrian - Thanks, I added the "done".
linkinpark342 - I like your solution! Do you mind if I'll post updated commands later? It should work for "prev" as well.
gwiener, go for it. previous directory would just change the -A1 to -B1 and the tail to head.
cd ../"$(ls -AF ..|grep '/'|grep -B1 `basename $PWD`|head -n 1)"If you don't add -v to ls (or sort) you will have the following probleme. file100.tex will be listed before file30.tex.
http://www.gnu.org/software/coreutils/manual/html_node/More-details-about-version-sort.html
Hi guys, I propose this one :
cd $(printf '%s\n' ../*/ | awk '/'"${PWD##*/}"'/{getline;print;}');)