in reply to How can I create a Bundle quickly and easily?
#!/usr/bin/perl -w my $db = <<'EOF'; sub DB::postponed { my $glob = shift; $glob =~ s/.*::_<//; print STDERR "loading $glob\n"; } sub DB::DB { } EOF ($ENV{PERL5DB} = $db) =~ tr/\n/ /; system($^X, '-d', @ARGV);
perl watchRequire.pl myProgram.pl arg1 arg2 2>required
update: hmm... seems useful, so I put it into Code.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: How can I create a Bundle quickly and easily?
by zakzebrowski (Curate) on Jul 26, 2001 at 22:08 UTC |