home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
misc
/
volume22
/
perl_archie
/
part01
/
fixpath
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-08-25
|
297 b
|
13 lines
#!/u3/thesis/clipper/bin/perl
eval "exec perl -S $0 $*"
if $running_under_some_shell;
rename("archie", "archie.ori");
open(FILE, "archie.ori");
open(OUT, ">archie");
print OUT "\#\!$ARGV[0]\n";
print $_ unless (!($_ = <FILE>) || ($_ =~ /^\#\!/));
while (<FILE>) {
print OUT $_;
}
close(OUT);