Hide

What's this?

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/

Get involved!

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.

Hide

Stay in the loop…

Follow the Tweets.

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

Subscribe to the feeds.

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:

Hide

News

2011-03-12 - Confoo 2011 presentation
Slides are available from the commandlinefu presentation at Confoo 2011: http://presentations.codeinthehole.com/confoo2011/
2011-01-04 - Moderation now required for new commands
To try and put and end to the spamming, new commands require moderation before they will appear on the site.
2010-12-27 - Apologies for not banning the trolls sooner
Have been away from the interwebs over Christmas. Will be more vigilant henceforth.
2010-09-24 - OAuth and pagination problems fixed
Apologies for the delay in getting Twitter's OAuth supported. Annoying pagination gremlin also fixed.
Hide

Tags

Hide

Functions

All commands

All commands from sorted by
Terminal - All commands - 10,553 results
read c; while [ -n "$c" ]; do clear; echo -e "$c = "$(echo "$c" |bc -l)"\n"; read c; done
cd
2009-02-06 02:37:17
User: YAK
Functions: cd
-7

Just type 2 characters and enter, you will be back.

sudo /etc/init.d/networking restart
2009-02-16 07:30:54
User: StephSD3
Functions: sudo
-7

when I turn on my wifi, I always have to put in this command in order to make my laptop notice the wifi.

ps axww | grep SomeCommand | awk '{ print $1 }' | xargs kill
2009-02-28 17:48:51
User: philiph
Functions: awk grep ps xargs
-7

This command kills all processes with 'SomeCommand' in the process name. There are other more elegant ways to extract the process names from ps but they are hard to remember and not portable across platforms. Use this command with caution as you could accidentally kill other matching processes!

xargs is particularly handy in this case because it makes it easy to feed the process IDs to kill and it also ensures that you don't try to feed too many PIDs to kill at once and overflow the command-line buffer.

Note that if you are attempting to kill many thousands of runaway processes at once you should use 'kill -9'. Otherwise the system will try to bring each process into memory before killing it and you could run out of memory. Typically when you want to kill many processes at once it is because you are already in a low memory situation so if you don't 'kill -9' you will make things worse

find ./wp-content/themes/rotce2009/ -name '*.php' -type f | xargs sed -i 's/<? /<?php /g'
echo tmp%date:~4,2%-%date:~7,2%-%date:~10,4%_%time%
2010-05-25 03:34:12
User: Agnostos
Functions: echo
Tags: windows
-8

Useful for if you want to create a log file every now and again or wish to record file names with date and time. You can't use the / for file names. so this replaces the / with a -

Windows only

ls -RAx | grep "svn:$" | sed -e "s/svn:/svn/" | xargs rm -fr
FOR /L %i IN (1,1,254) DO ping -n 1 10.254.254.%i | FIND /i "Reply">> c:\ipaddresses.txt
2010-06-29 21:02:21
Functions: ping
-8

documents all active ips on a subnet and saves to txt file.

sed -i -e 's/^#$//g' /path/to/file
find . -type l | xargs file | grep broken
for i in `find .`; do [ -d $i ] && chmod 755 $i || chmod 644 $i; done
2010-08-31 22:27:32
User: binfalse
Functions: chmod
-8

Reconstruct standard permissions for directories and files in current directory

#!/bin/sh for dir in `ls -A | grep -v .sh`; do chown -R $dir:$dir $dir done
ps -ef | awk -v OFS="\n" '{ for (i=8;i<=NF;i++) line = (line ? line FS : "") $i; print NR ":", $1, $2, $7, line, ""; line = "" }'
which any_path/a_command.sh | sed "s|^./|$(pwd)|"
2011-09-22 10:38:56
User: keymon
Functions: sed which
-8

This works in multiple unixes, not only linux, for different paths.

On solaris, if you do not have which, you can use:

ksh whence -p anypath/a_command.sh | sed "s|^./|$(pwd)|" ksh whence -p

diff3 -a file1 file2 file3
2009-02-21 21:52:46
User: JollyJumper
Functions: diff3
-8

It takes a hunk and shows the different between the three file. Useful when you want to compare two different changed file which from the same base file.

(use emacs ediff3, eyecandy and more useful if you want to merge them from anywhere to anywhere)

<ctrl+shift+v>
2010-08-08 12:48:51
User: pahnin
-8

generally we cannot use control + v to paste text copied in clipboard

but by pressing control and holding it press shift and v

ls -s|grep -E "^ *0"|sed "s/^ *0 //g"|xargs -i rm "{}"
2012-04-18 14:50:46
User: glaudiston
Functions: grep ls rm sed xargs
-8

Remove all zero size files from current directory. Its a not recursive option like:

find . -size 0c -exec rm {} \;

cat /dev/null >filename
2009-02-13 10:50:41
User: vorphalax
Functions: cat
-8

with this command you can empty file

cat /dev/scd0 > ~/audio_image.iso
2011-09-24 15:29:27
User: eastwind
Functions: cat
-8

you should umount /dev/cdrom before using this cli

sudo ssh -Y remoteuser@remotehost sudo wireshark
2010-01-05 14:35:20
User: Code_Bleu
Functions: ssh sudo
-8

This allows you to display the wireshark program running on remote pc to your local pc.

find . |while read f;do echo "$f";done
2010-03-02 14:21:15
Functions: echo find read
-8

Read all contents from current directory and display it on stdout.

ps -e
sudo sh -c "apt-get update;apt-get dist-upgrade;apt-get autoremove;apt-get autoclean"
2010-08-13 16:12:18
User: l0b0
Functions: sh sudo
-8

Gets you the latest of everything, and removes any remaining junk. The "sh -c" part is so that you'll only run a single sh command, so you won't get asked more than once for the password.

vim ~/.inputrc
2013-04-23 02:50:11
User: ekinertac
Functions: vim
Tags: bash search
-8

This allows you to search through your history using the up and down arrows ? i.e. type "cd /" and press the up arrow and you'll search through everything in your history that starts with "cd /".

rsync
2013-03-01 14:47:19
User: techie
Functions: rsync
-8

rsync is the best command ever and I am interested what the rest of you think is the best command