Aug 22, 2002 #1 pneely MIS Apr 3, 2001 23 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 Apr 3, 2001 23 US I found the answer... cd sourcedir ; tar cf - . | (cd destinationdir ; tar xf -) Upvote 0 Downvote