Aug 22, 2002 #1 pneely MIS Joined Apr 3, 2001 Messages 23 Location US I need to use tar to copy files from one directory and extract them into another directory in one step. I think its done something like this... tar cvf - . | ???? Any ideas ? Thanks, P@
I need to use tar to copy files from one directory and extract them into another directory in one step. I think its done something like this... tar cvf - . | ???? Any ideas ? Thanks, P@
Aug 22, 2002 Thread starter #2 pneely MIS Joined Apr 3, 2001 Messages 23 Location US I found the answer... cd sourcedir ; tar cf - . | (cd destinationdir ; tar xf -) Upvote 0 Downvote