summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/perl/eg/findtar
blob: eabbe63dd5a081cd5d681405ee467d1ede4f6648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl

# $RCSfile: findtar,v $$Revision: 1.5 $$Date: 2001/05/24 18:35:03 $

# findtar takes find-style arguments and spits out a tarfile on stdout.
# It won't work unless your find supports -ls and your tar the I flag.

$args = join(' ',@ARGV);
open(find,"/usr/bin/find $args -ls |") || die "Can't run find for you.";

open(tar,"| /bin/tar cIf - -") || die "Can't run tar for you: $!";

while (<find>) {
    @x = split(' ');
    if ($x[2] =~ /^d/) { print tar '-d ';}
    print tar $x[10],"\n";
}