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:
Prepending one or more spaces to your command won't be saved in history.
Useful for pr0n or passwords on the commandline.
Tested on BASH.
There are 9 alternatives - vote for the best!
Sometimes you don't want to leave history, because of passwords use or somethink like.
I think it help.
wget --user=username --password="$password" http://example.org/
Instead of hiding commands entirely from history, I prefer to use "read" to put the password into a variable, and then use that variable in the commands instead of the password. Without the "-e" and "-s" it should work in any bourne-type shell, but the -s is what makes sure the password doesn't get echoed to the screen at all. (-e makes editing work a bit better)
Put a space in front of your command on the command line and it will not be logged as part of your command line history.
Yes, by correctly setting the HIST* variables you can make certain commands not saved in history. But that's complicated and easy to make a mistake. If you set HISTFILE= to blank, nothing in your current shell session will be saved in history. Although this is not a precise answer to the subject, but it's very simple.
If you can do better, submit your command here.
You must be signed in to comment.
depends on the variable HISTCONTROL
(must be ignoreboth to work)
You use the command line for pr0n?! lolz
hmmm... 45(1 pr0n?
From man bash:
HISTCONTROL
A colon-separated list of values controlling how commands are saved on the history list. If the list of values includes ignorespace, lines which begin with a space character are not saved in the history list. A value of ignoredups causes lines matching the previous history entry to not be saved. A value of ignoreboth is shorthand for ignorespace and ignoredups.
A value of erasedups causes all previous lines matching the current line to be removed from the history list before that line is saved. Any value not in the above list is ignored. If HISTCONTROL is unset, or does not include a valid value, all lines read by the shell parser are saved on the history list, subject to the value of HISTIGNORE. The second and subsequent lines of a multi-line compound command are not tested, and are added to the history regardless of the value of HISTCONTROL.
I wouldn't rely on this 'feature' ;) -- see other comments about HISTCONTROL in addition to reading the manual for bash!
In zsh you can do "fc -p" to switch to a new history (and make $HISTFILE empty) and "fc -P" to switch back to the last one.
you have to put:
export HISTIGNORE="[ \t]*"
in ~/.bashrc for this to work. if you don't have .bashrc in in ~/ just make your own
this looks like a bug in bash...if you don't alter HISTCONTROL of course.
Use kill to exit the shell instead of exit or logout:
kill -9 $$ironically export HISTIGNORE="[ \t]*" or
echo export HISTIGNORE="[ \t]*" >> .bashrcwill appear in the history :)
You should do
<space> history -d NWhere N is the postion export HISTIGNORE="[ \t]*"
an easier way to do this in zsh is to add "setopt HIST_IGNORE_SPACE" to your .zshrc
it'll then behave like this command should, but keep the space'd command in history till you enter another one
(from man zshoptions)
export HISTCONTROL=ignorespace worked for me. Testet on Centos 5