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:
Simple but useful little command to unzip all files in a directory.
There are 5 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
(1) why are you piping the output of cd to unzip, and (2) why are you escaping the asterisk since you want the shell to expand it...
Sorry about that, I was a little tired when I wrote the command, the pipe was supposed to be a semi colon.
However, I don't want the shell to expand it, I just want to unzip all zip files in a given directory.
Normally you DO want the shell to expand *.zip, because most (unix) programs do not do wildcard expansion on their arguments. Otherwise you're depending on unzip to treat *.zip as a wildcard expression, which unzip happens to do here in this case. But unix commands like ls or even gunzip would interpret the shell argument \*.zip as a single file because they leave wildcard stuff to the shell. Doing either results in an error message
ls \*.zipls: cannot access *.zip: No such file or directory
Unzip is the red-headed stepchild here because it has been ported to many different systems, necessitating the wildcard expansion.