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:
Would be better if gnome-open would accept std in
Should be doable in KDE - anyone?
I've got this posted in one of my .bash_profiles for humor whenever I log in.
This will give you the Dell Service tag number associated with your machine. Incredibly useful when you need that number for tech support or downloads.
This command tar?s up a directory and sends the output to gzip, showing a rate of 223MB/s.
This may require you installing the pv command.
For debian based users out there:
sudo aptitude install pv
Sets the Open Firmware to ask for password when selecting a boot volume other then the hd
I sometimes have large files of MAC addresses stored in a file, some databases need the information stored with the semicolon (makes for easier programming a device) others don't. I have a barcode to text file scanner which usually butchers MAC addresses so this was the fix> I initially did this in awk ;)
awk '{for(i=10;i>=2;i-=2)$0=substr($0,1,i)":"substr($0,i+1);print}' mac_address_list
WARNING! This command may set an invalid permission under your current directory.
This command will set the 0755 permissions to all directories under your current directory. An alternative version of this command is: find ~/.ssh -type d -exec chmod 0700 {} \;
WARNING! This command may set an invalid permission under your current directory.
This command will set the 0644 permissions to all files under your current directory. An alternative version of this command is: find ~/.ssh -type f -exec chmod 0600 {} \;
This command will erase all bytecode versions of Python modules under the current directory.
Requires: imagemagick and graphviz
On Debian systems, displays a graph of package dependencies. Works also with other image formats, like svg :
apt-cache dotty bash | dot -T svg | display
Adds a newline to the end of all cpp files in the directory to avoid warnings from gcc compiler.
This comes in handy if you have daemons/programs that have potential issues and stop/disappear, etc., can be run in cron to ensure that a program remains up no matter what. Be advised though, if a program did core out, you'd likely want to know why (gdb) so use with caution on production machines.
Requires: signing-party (on Debian).
Note: you need a working MTA on your machine.
Opens a new shell as root. Useful if you want to run a lot of commands as superuser without needing to sudo each of them.
This command would be useful when it is desirable to list only the directories.
Other options
Hidden directory
ls -d .*/
Other path
ls -d /path/to/top/directory/.*/
Long format:
ls -ld */
This is the solution to the common mistake made by sudo newbies, since
sudo echo "foo bar" >> /path/to/some/file
does NOT add to the file as root.
Alternatively,
sudo echo "foo bar" > /path/to/some/file
should be replaced by
echo "foo bar" | sudo tee /path/to/some/file
And you can add a >/dev/null in the end if you're not interested in the tee stdout :
echo "foo bar" | sudo tee -a /path/to/some/file >/dev/null
This is a command you see mentioned alot by Gentoo monkeys.
They say to use it after every update of GCC, any library you might use and glibc.
They argue that compiling and recompiling everything like this will optimize the system alot more because you are recompiling the entire system (gcc, glibc etc) with nativly compiled versions of themselves. Same goes for all libraries etc.
I doubt the difference in working speed is really worth the hours and hours you end up having your computer compile the same stuff again and again though.
On Debian systems, choose which command provides java. Works for all alternatives listed in /etc/alternatives.