summaryrefslogtreecommitdiff
path: root/fixpaths
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2000-11-08 01:07:51 +0000
committerBen Lindstrom <mouring@eviladmin.org>2000-11-08 01:07:51 +0000
commitdbcea870630e6e6cedc6937d33da4e2e4c6d5390 (patch)
treea059a45f4b239ebf8d74aee385eae05f98dad530 /fixpaths
parent89ef41a7848612af76b477b9018d178e38edb415 (diff)
- (bal) fixpaths fixed to stop it from quitely failing. Patch by
Mark D. Roth <roth@feep.net>
Diffstat (limited to 'fixpaths')
-rwxr-xr-xfixpaths15
1 files changed, 7 insertions, 8 deletions
diff --git a/fixpaths b/fixpaths
index 4badd9886..edd9e486f 100755
--- a/fixpaths
+++ b/fixpaths
@@ -37,14 +37,13 @@ for $f (@ARGV) {
37 $of = $2.".$ext"; 37 $of = $2.".$ext";
38 38
39 open(IN, "<$f") || die ("$0: input file $f missing!\n"); 39 open(IN, "<$f") || die ("$0: input file $f missing!\n");
40 if (open(OUT, ">$of")) { 40 open(OUT, ">$of") || die ("$0: cannot create output file $of: $!\n");
41 while (<IN>) { 41 while (<IN>) {
42 for $s (keys(%def)) { 42 for $s (keys(%def)) {
43 s#$s#$def{$s}#; 43 s#$s#$def{$s}#;
44 } # for $s 44 } # for $s
45 print OUT; 45 print OUT;
46 } # while <IN> 46 } # while <IN>
47 } # if (outfile open)
48} # for $f 47} # for $f
49 48
50exit 0; 49exit 0;