May 31, 2011 #1 ui05067 MIS Aug 24, 2001 18 US I would like to TAR AND move (FTP) a directory structure from one box to another HPUX to AIX how can I just tar the directory sturctures without including the files in them? THanks!
I would like to TAR AND move (FTP) a directory structure from one box to another HPUX to AIX how can I just tar the directory sturctures without including the files in them? THanks!
Jun 2, 2011 #2 Annihilannic MIS Jun 22, 2000 6,317 AU Once again, pax should help, with the -d option: Code: pax -w [i]/tmp/filename.tar[i] -d $(find [i]srcdir[i] -type d) Annihilannic. Upvote 0 Downvote
Once again, pax should help, with the -d option: Code: pax -w [i]/tmp/filename.tar[i] -d $(find [i]srcdir[i] -type d) Annihilannic.