Pages

Tuesday, November 25, 2014

tar - copy files recursively.


To copy all of the files and subdirectories in the current working directory to the directory /target, use:

tar cf - * | ( cd /target; tar xfp -)

=====

No comments:

Post a Comment