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:
Suppresses all output to /dev/null. This could be expanded to check for a -l command line option to log the stderr to a file maybe -l file or -l to log to default quietly.log. I'm finding that I use it more often than one would think.
There are 3 alternatives - vote for the best!
This works even if there are spaces in any word in the command line.
If you can do better, submit your command here.
You must be signed in to comment.
less verbose to do it like >/dev/null 2>&1
Wow, that's a good idea. A few things, though.
You need to quote $* just in case the command has a space in it.
Shorten the redirects as TheMightyBuzzard says.
Shorten the name to something simple, maybe 'q' (too much typing otherwise :-)
function q () { "$*" > /dev/null 2>&1; };Of course in bash, you don't need the keyword 'function'!
q() { "$*" > /dev/null 2>&1; };fantastic, i have created 2 aliases for me. one for total silence, the other just redirects err to out for easy grepping ;)
function q () { $* 2>&1 ; }
function qq () { $* 2> /dev/null > /dev/null; }
PS: I do not think quotes are necessary or even good.
* without quotes fails, if there are spaces in the command or its arguments. $* with quotes "expands to a single word with the value of each parameter separated by the first character of the IFS special variable." (man bash). So it tries to run the whole command-line as a command name.So, the only valid option here is "$@". It expands to a list of quoted words, just like the original.