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:
Seems obvious, but other seemingly simple ways to use it don't work:
echo !whammy
and
echo "!whammy"
both output:
-bash: !whammy: event not found
and this:
echo "\!whammy"
outputs:
\!whammy
with the slash :(
you can also do any combinations of quotes for a complex string:
echo "It's great to be able to use a bang ("'!'") in a command"'!'
outputs:
It's great to be able to use a bang (!) in a command!
If you can do better, submit your command here.
You must be signed in to comment.
Two other simple solutions:
1. Escape it, but don't put it in double quotes:
echo \!whammy2. Put the whole thing in single quotes:
echo '!whammy'While we're doing neat echo tricks, here's another:
doing multi-line echos:
echo "hello
world"
will fail, resulting in [ hello world ]
but doing
echo 'hello
world'
will result in [ hello
world ]
as expected.
clockworkavian Both of your commands shown do *exactly* what is expected. Single quotes prevent the shell from expanding, modifying, or interpreting the data given to it. Double quotes, or interpolating quotes, do not.
@bjimba:
Didn't know about #1 thanks\! :)
and #2 is implied in my examples, I chose to separate the bang into its own single quotes to emphasize their use (I assume most people use none quotes or double quotes normally, like me.)
I don't know why I tend to use double quotes at the shell. Coming from a PHP background, I use single quotes 99% of the time elsewhere.
@ozymandias:
Thanks for the info, I wish I would have know that all along.
It's very similar to the difference between single and doubt quotes in PHP. I'm surprised I didn't make the connection earlier. Makes me glad I posted this one. I learned a lot :)