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-18 - Top 10 commands explained
There's a great article by Peteris Krumins explaining the current top 10 commands: http://www.catonmat.net/blog/top-ten-one-liners-from-commandlinefu-explained/
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.
Hide

Tags

Hide

Functions

Duplicate a directory tree using tar and pipes

Terminal - Duplicate a directory tree using tar and pipes
(cd /source/dir ; tar cv .)|(cd /dest/dir ; tar xv)
2009-07-19 10:31:13
User: marssi
Functions: cd tar
-10
Duplicate a directory tree using tar and pipes

the f is for file and - stdout, This way little shorter.

I Like copy-directory function It does the job but looks like SH**, and this doesn't understand folders with whitespaces and can only handle full path, but otherwise fine,

function copy-directory () { ; FrDir="$(echo $1 | sed 's:/: :g' | awk '/ / {print $NF}')" ; SiZe="$(du -sb $1 | awk '{print $1}')" ; (cd $1 ; cd .. ; tar c $FrDir/ )|pv -s $SiZe|(cd $2 ; tar x ) ; }

Alternatives

There are 2 alternatives - vote for the best!

Terminal - Alternatives
tar cpof - src |( cd des; tar xpof -)
2009-09-20 20:43:30
Functions: cd tar
-1

Using tape archive create a tar file in Stdout (-) and pipe that into a compound command to extract the tar file from Stdin at the destination. This similar to "Copy via tar pipe ...", but copies across file systems boundaries. I prefer to use cp -pr for copying within the same file system.

(cd /source/dir ; tar cvf - .)|(cd /dest/dir ; tar xvpf -)

Know a better way?

If you can do better, submit your command here.

What others think

how about a good old cp, since you're on the same machine? Also, I think you're missing the - from your tar commands because tar doesn't use stdin/stdout by default.

Comment by bwoodacre 59 weeks and 4 days ago

From man pages of tar.

-f, --file [HOSTNAME:]F

use archive file or device F (otherwise value of TAPE environment variable; if unset, "-", meaning stdin/stdout)

And I use it mostly on large folder copies on a mounted network drive. i.e my copy-directory function

Comment by marssi 59 weeks and 4 days ago

tar cvpf - . | tar -C /where/you/want/the/copy xvpf -

Comment by unixmonkey4704 59 weeks and 4 days ago

BITD you need -f - because the default was a tape drive device, not stdout :-) However, on a modern system, this doesn't beat cp -av (or if you want things like --exclude, rsync -av)

Comment by eichin 59 weeks and 4 days ago

You can also use find+cpio:

cd /src; find . | cpio -dump /dst

A nice variant is the -l option: It doesn't really copy the files, but creates a tree of hardlinks. Only works within the same file system, of course:

cd /src; find . | cpio -dumpl /dst

If some files contain white space characters, then you should use the -print0 option with find, and the -0 (zero) option with cpio.

On BSD systems, the cpdup command is most convenient and very efficient:

cpdup /src /dst

By the way, the cp command (with -r or -R) should be avoided. It's not portable, the exact semantics are not well-defined. Notably it doesn't copy all kinds of files correctly, on some platforms it doesn't handle hardlinks, FIFOs or other special files correctly.

Comment by inof 59 weeks and 2 days ago

Your point of view

You must be signed in to comment.

Related sites and podcasts