/[cvs]/nfo/perl/scripts/shortcuts/run-there.pl
ViewVC logotype

Annotation of /nfo/perl/scripts/shortcuts/run-there.pl

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations)
Tue Jan 28 11:03:30 2003 UTC (21 years, 5 months ago) by root
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/plain
+ initial commit - needed for home2web

1 root 1.1 #!/usr/bin/perl
2    
3     use strict;
4     use warnings;
5    
6    
7     use Data::Dumper;
8    
9    
10     my $where = shift;
11     print "chdir to: $where", "\n";
12     chdir $where;
13    
14     my $args = [];
15     while (my $arg = shift) { push @$args, $arg; }
16     foreach my $arg ( @$args ) {
17     print "running: $arg", "\n";
18     print qx( $arg );
19     }
20    
21     1;

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed