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:
this exits bash without saving the history. unlike explicitly disabling the history in some way, this works anywhere, and it works if you decide *after* issuing the command you don't want logged, that you don't want it logged
... $$ ( or ${$} ) is the pid of the current bash instance
this also works perfectly in shells that don't have $$ if you do something like
kill -9 `readlink /proc/self`
There is 1 alternative - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
Doesn't `readlink /proc/self` return the pid of the readlink program rather than the shell's pid?
heh, yeah, it does. So, time for me to stop assuming everything is a shell builtin :-)
I like this better, since a kitten dies every time you kill -9.
unset HISTFILEThis is not a good way to do things because you are ignoring anything else that might be done in .bash_logout.
A cleaner way to clear your running history is like this:
OLDHISTSIZE=$HISTSIZE
HISTSIZE=0
HISTSIZE=$OLDHISTSIZE
Also, don't count on being immune from logging by the system as some servers might be running exec loggers, which are independent of the shell.