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:
-d, --delete
Delete a user?s password (make it empty). This is a quick way to disable a password for an account. It will set the named account passwordless.
it recursively searches your project's directories and sum the lines of every source [.c or .h]. Then it gives you the total.
It is an easy method unzip a file and copy it to remote machine. No unziped file on local hard drive
Every 20 minutes test if host with IP 192.168.0.14 is 'dead' or not reachable.
The line should be put in your crontab file.
Paste what you previously wrote in INSERT MODE, for example:
1. Write 'foo' in INSERT MODE
2. Return to NORMAL MODE
3. Press "." and it will paste 'foo'
A script that checks if your environment is correctly configured for using cobbler.
doesnt require knowing the password to pdf
Also works with files:
cat file
Hello world
base64 file
SGVsbG8gd29ybGQK
To decrypt use the -d option:
echo SGVsbG8gd29ybGQK | base64 -d
Hello world
Kills all processes owned by user MYWIFE (replace MYWIFE with username or ID of your choice)
(Thanks, porges, for the better command)
For those files in current folder that would be shown in `ls *ext`, for some extension ext, move/rename that file removing the .ext suffix from the file name.
It uses Bash's parameter substitution, as seen in
http://tldp.org/LDP/abs/html/parameter-substitution.html#PCTPATREF
(for analog use in prefix, see http://tldp.org/LDP/abs/html/parameter-substitution.html#PSOREX2 )
Search in all html files and remove the lines that 'String' is found.
Find and kill multiple instances of a process with one simple command.
use manpages, they give you "ultimate commands"
"ls -SshF --color" list by filesize (biggest at the top)
"ls -SshFr --color" list by filesize in reverse order (biggest at the bottom)
use xdg-open without looking at error messages
examples msg:
(nautilus:3955): Gtk-WARNING **: Theme parsing error: Notebook.css:21:15: Junk at end of value
Replace D drive with mounted ISO virtual drive and Replace E with your USB drive letter.
avoid rm to be recursive until you complete the command: put the -rf at the end!