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:
Looks like you're stuck with sed if your ls doesn't have a -Q option.
With counter format [001, 002, ..., 999] , nice with pictures or wallpapers collections.
no external commands, but can only do 0-99, not 1-100, so we adjust it later
Did some research and found the previous command wrong, we don't kill a zombie but its parent. Just made some modifcation to khashmeshab's command.
head by default displays first ten lines of its output. Use 'head -nXX' to display the XX largest files
There is no need to 'zcat textfile.gz | less' with newer distros. This is useful for reading archived log files without having to extract, read, and zip when done.
This is useful for command line 'recycle bins' and such like
This command generates a sequential login list. Good to be used as a source of new logins.
Using the "#" in shell is surprisingly useful.
Some of the uses I found:
a) As a visible copy buffer in shell history (caveat: do not use for passwords :-)
b) To build complex commands until ready then hit the HOME, DEL, ENTER keys to run it
c) Placing reference data into shell history (search for tags with CTRL-R TAGNAME)
d) Putting aside a "work in progress" command to focus on another task (HOME # ENTER)
Useful for removes a package and its depends, for example to remove the gnome desktop environment, also configuration files will be removed, you should be carefully and sure that you want to do this.
or
which <command> > /dev/null 2>&1 || echo Error!
For example, I write
which colordiff > /dev/null 2>&1 && alias diff=colordiff
in my `~/.bashrc`.
-p -> loop (same as -n in sed)
-i -> edit files
-e -> execute command
replace Old with New in all *.html files