summaryrefslogtreecommitdiffstats
path: root/contrib/perl5/eg/down
blob: bbb0d062cbd19699aad563012361af7ebeafd682 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/perl

$| = 1;
if ($#ARGV >= 0) {
    $cmd = join(' ',@ARGV);
}
else {
    print "Command: ";
    $cmd = <stdin>;
    chop($cmd);
    while ($cmd =~ s/\\$//) {
	print "+ ";
	$cmd .= <stdin>;
	chop($cmd);
    }
}
$cwd = `pwd`; chop($cwd);

open(FIND,'find . -type d -print|') || die "Can't run find";

while (<FIND>) {
    chop;
    unless (chdir $_) {
	print stderr "Can't cd to $_\n";
	next;
    }
    print "\t--> ",$_,"\n";
    system $cmd;
    chdir $cwd;
}
OpenPOWER on IntegriCloud