diff options
author | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1994-04-04 00:00:00 +0000 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1994-04-04 00:00:00 +0000 |
commit | 2304df62caa7d9be70e8b8bcdb454e139c9c103d (patch) | |
tree | 98a456ef0fbe59b1a02bfe68afa4a3d9afb4f21c /autosplit | |
parent | 8990e3071044a96302560bbdb5706f3e74cf1bef (diff) | |
download | perl-2304df62caa7d9be70e8b8bcdb454e139c9c103d.tar.gz |
perl 5.0 alpha 8
[the last one taken from the September '94 InfoMagic CD; a similar
style of cleanup as the previous commits was performed]
Diffstat (limited to 'autosplit')
-rwxr-xr-x | autosplit | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/autosplit b/autosplit new file mode 100755 index 0000000000..a57b6feaa1 --- /dev/null +++ b/autosplit @@ -0,0 +1,29 @@ +#!./miniperl + +chdir "lib" if -d "lib"; + +$package = shift; + +$filename = "$package.pm"; +open(IN, $filename) || die "Can't open $filename: $!\n"; +while (<IN>) { + last if /^__END__/; +} +$_ or die "Can't find __END__ in $filename\n"; + +mkdir "auto/$package", 0777 unless -d "auto/$package"; +while (<IN>) { + if (/^sub ([\w:]+)/) { + $name = $1; + print OUT "1;\n"; + $newname = "auto/$package/$name.al"; + open(OUT, ">$newname") or warn "Can't create $newname: $!\n"; + print OUT <<"END"; +# NOTE: Derived from $package.pm. Changes made here will be lost. +package $package; + +END + } + print OUT $_; +} +print OUT "1;\n"; |