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.

World cup college
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

2010-03-03 - Commandlinefu @ SXSW 2010
Am going to be at SXSW this year, in case you want to submit any CLI nuggets or suggestions to me in person. Ping me on the @codeinthehole Twitter account.
2009-09-12 - Email updates now available
You can now enable email updates to let you know each time you're command is commented on.
2009-07-11 - API and javascript blog widget now available
A simple API has been released, allowing commands to be retrieved in various formats. This also allows commands to be embedded on blogs/homepages.
2009-05-17 - Added duplicate suggestions to the new command form
When adding a new command, a quick background search is performed to make sure you're not duplicating a command already in the system.
Hide

Tags

Hide

Functions

Commands by 0disse0

Commands by 0disse0 from sorted by
Terminal - Commands by 0disse0 - 16 results
scp -l10 pippo@serverciccio:/home/zutaniddu/* .
2010-02-19 16:44:24
User: 0disse0
Functions: scp
Tags: ssh scp bandwidth
11

the command is obvious, I know, but maybe not everyone knows that using the parameter "-l" you can limit the use of bandwidth command scp.

In this example fetch all files from the directory zutaniddu and I copy them locally using only 10 Kbs

-A INPUT -i eth1 -m mac ?mac 00:BB:77:22:33:AA -j ACCEPT
2010-01-31 15:34:31
User: 0disse0
2

edit the /etc/sysconfig/iptables file and try to work whit this:

-A INPUT -i (interface) -m mac (mac address) -j ACCEPT/DROP

mailq | grep MAILER-DAEMON | awk ?{print $1}? | tr -d ?*? | postsuper -d -
shred -u -z -n 17 rubricasegreta.txt
2010-01-31 15:24:54
User: 0disse0
Functions: shred
6

Instead, install apt-get install secure-delete and you can use:

-- srm to delete file and directory on hard disk

-- smem to delete file in RAM

-- sfill to delete "free space" on hard disk

-- sswap to delete all data from swap

sshpass -p [password] rsync -av -e ssh [utente]@[indirizzoip]:/directorydacopiare/ /directorydidestinazione
2010-01-31 15:21:14
User: 0disse0
Functions: rsync ssh
-1

Check the ssh_config file and set the variable:

StrictHostKeyChecking no

python fsrecovery.py -P 0 -f <path-to-instance>/Data.fs <path-to-instance-destination>/Data.fs.packed
dd if=/dev/cdrom of=whatever.iso
2009-09-05 09:19:41
User: 0disse0
Functions: dd
Tags: backup dd iso dvd
6

A dear friend of mine asked me how do I copy a DVD to your hard drive? If you want to make a copy of the ISO image that was burned to a CD or DVD, insert that medium into your CD/DVD drive and (assuming /dev/cdrom is associated with your computer?s CD drive) type the following command

sudo dd if=/dev/hda1 of=/dev/hdb2
2009-09-05 09:16:52
User: 0disse0
Functions: dd sudo
2

This command clone the first partition of the primary master IDE drive to the second partition

of the primary slave IDE drive (!!! back up all data before trying anything like this !!!)

od -vt x1 /tmp/spaghettifile
sudo mknod /dev/ttyS4 c 4 68
2009-09-05 09:12:44
User: 0disse0
Functions: c++ mknod sudo
Tags: serial mknod tty
0

When you need to add another tty device that can automatically start at boot time

watch -d 'ls -l'
2009-09-03 20:12:36
User: 0disse0
Functions: watch
Tags: watch stats
0

To highlight the difference between screen updates

watch 'cat /proc/loadavg'
2009-09-03 20:10:46
User: 0disse0
Functions: watch
Tags: status watch
0

If you need to keep an eye on a command whose output is changing, use the watch command. For example, to keep an eye on your load average

gnome-terminal --tab --tab --tab
2009-09-03 19:36:07
User: 0disse0
Tags: terminal gnome
2

If you launch gnome-terminal manually, you can start with three open tabs

apt-key list
2009-09-03 19:32:11
User: 0disse0
Functions: apt
Tags: apt-key
0

For example: check the APT security keys to make sure the Google digital signature was imported correctly

apt-cache stats
man 5 crontab
2009-09-03 19:27:08
User: 0disse0
Functions: man
1

You can view the man pages from section five by passing the section number as an argument to the man command