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 - 8,690 results
for i in ${TOILET_FONT_PATH:=/usr/share/figlet}/*.{t,f}lf; do j=${i##*/}; toilet -d "${i%/*}" -f "$j" "${j%.*}"; done
alias o='xdg-open "$@" 2>/dev/null'
2011-12-26 08:52:22
User: Bonster
Functions: alias
-3

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

pgrep -f 'process.*argument.*'
ettercap -i wlan0 -T -q -P dns_spoof -M ARP:remote // //
2011-12-25 15:41:09
User: f3bruary
Tags: ettercap
0

This command will enable dns spoofing through ettercap. The etter.dns config file must be set. The -i parameter defines the interface, e.g. eth0, eth1, wlan0...

ettercap -h for more info

Credit goes to xhabie-crew

find . -type f -name "*.php" -exec wc -l {} +;
unace x [file]
help builtin
for i in `wget -O url|grep '<a rel="nofollow"'|grep http|sed 's|.*<a rel="nofollow" class="[^"]\+" href="[^"]*https\?://\([^/]\+\)[^"]*">[^<]\+</a>.*|\1|'`;do if test -n "$(whois $i|grep -i godaddy)";then echo $i uses GoDaddy;fi;sleep 20;done
ls | vim +'set bt=nowrite' -
tar czf git_mods_circa_dec23.tgz --files-from <(git ls-files -m)
echo $(cat file)
2011-12-22 23:05:52
User: dtlp747
Functions: cat echo
0

Example: you have a package.txt you want to install on a system. Instead of this:

cat package.txt

package1

package2

package3

You want it to cat out on one line so you can print "yum install package1 package2 package3"

pastebinit [file]
2011-12-22 14:21:47
User: Bonster
-11

paste file to pastebin (other similar sites available, read man page).

make sure to have 'pastebinit' install

mysql -u root -p -BNe "select host,count(host) from processlist group by host;" information_schema
2011-12-22 10:35:23
User: flatcap
Tags: mysql
4

Count the number of active connections to a MySQL database.

The MySQL command "show processlist" gives a list of all the active clients.

However, by using the processlist table, in the information_schema database, we can sort and count the results within MySQL.

mysql -u root -p -N -e"show processlist\G;" | egrep "Host\:" | awk -F: '{ print $2 }' | sort | uniq -c
mysql -u root -p -e"show processlist;"|awk '{print $3}'|awk -F":" '{print $1}'|sort|uniq -c
2011-12-22 05:37:36
User: prasadwani
Functions: awk uniq
Tags: mysql
0

This command will help you to find how many number of connection are made to given mysql and what are the different hosts connected to it with number of connection they are making.

lame -m j -V 4 -q 0 --lowpass 17 -b 128 --cbr "infile" "128/outfile"
2011-12-22 04:49:22
0

This converts a mp3 file "infile" to a CBR 128 kbps high quality (according to Winamp) mp3 "128/outfile", joint-stereo, using LAME.

hexdec() { bc <<< "obase=10; ibase=16; $1"; }
fping -r1 -Aag <network>/<cidr_mask> 2>/dev/null | sort -gt. -k4
2011-12-21 22:38:51
User: SuperJC
Functions: sort
Tags: Network
0

Prevents the need for the grep & awk statements. Sort is optional if you don't care about the output order. The network range can also be specified as in the original post.

-A Display targets by address rather than DNS name. (Probably unnecessary...)

-a Show systems that are alive.

S fping -r1 -ag 192.168.nnn.0/24 2>/dev/null

Without sorting...

xmlstarlet sel -t -v "/path/to/element" file.xml
2011-12-21 21:49:56
User: djangofan
Tags: xmlstarlet
0

Prints the value of a XML node rather than the entire node.

find . -type f -name '*.sh' -print | cpio -o | gzip >sh.cpio.gz
2011-12-21 21:13:29
User: djangofan
Functions: cpio find gzip
0

Archive all .sh files in a directory into a gzip archive.

ln -s "`find /path -type f -iname $(ls -t /path | head -1 )`" /path/latest
awk -F ':' '{print $1 | "sort";}' /etc/passwd
cut -d: -f1 /etc/passwd | sort
cut -d: -f1 /etc/passwd | sort