summaryrefslogtreecommitdiffstats
path: root/contrib/perl5/eg/down
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/perl5/eg/down')
-rwxr-xr-xcontrib/perl5/eg/down30
1 files changed, 0 insertions, 30 deletions
diff --git a/contrib/perl5/eg/down b/contrib/perl5/eg/down
deleted file mode 100755
index bbb0d06..0000000
--- a/contrib/perl5/eg/down
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/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