perl 4.0.00: (no release announcement available)
[p5sagit/p5-mst-13.2.git] / eg / findtar
CommitLineData
378cc40b 1#!/usr/bin/perl
2
fe14fcc3 3# $Header: findtar,v 4.0 91/03/20 01:09:48 lwall Locked $
378cc40b 4
5# findtar takes find-style arguments and spits out a tarfile on stdout.
6# It won't work unless your find supports -ls and your tar the I flag.
7
8$args = join(' ',@ARGV);
9open(find,"/usr/bin/find $args -ls |") || die "Can't run find for you.";
10
a687059c 11open(tar,"| /bin/tar cIf - -") || die "Can't run tar for you: $!";
378cc40b 12
13while (<find>) {
14 @x = split(' ');
15 if ($x[2] =~ /^d/) { print tar '-d ';}
16 print tar $x[10],"\n";
17}