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:
Sometimes you don't want to leave history, because of passwords use or somethink like.
I think it help.
There are 8 alternatives - vote for the best!
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.
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.
Interesting, but a space before a command is a better way of running something and not saving it in the history.
Keep in mind though that passwords on the command line may still show up in a process list and if you're on another sysadmin's system, they might have turned on exec logging to keep track of what users are running.
Putting a password in to a variable in the environment of a shell is an *incredibly* bad idea. First, the value will stay in memory until it is changed. Secondly, shell expansion will have it one the command line -- leaving it in another shell environment variable, and third (as pointed out above) it can end up in the process list on the system.
And, even if the memory is freed up by the shell, and the variable is reset, the value of the password is still in memory...you have no way of controlling when the memory page will be reused and therefore no way to avoid someone dumping pages of memory from the system looking for items that could be passwords.
This hack is truth. The space command thing is crap. Another way to not right your entire session history (If auto-append to history is not on) is to run kill -9 $$. The $$ is your user session pid.