]> andersk Git - openssh.git/blobdiff - fixpaths
- markus@cvs.openbsd.org 2002/02/03 17:58:21
[openssh.git] / fixpaths
index 4badd98866616ceee9cdb09651dc0670bc5b3ba1..7e4178e4a96753c4debff32e37a9b1a3bdd5c0c8 100755 (executable)
--- a/fixpaths
+++ b/fixpaths
@@ -3,21 +3,17 @@
 # fixpaths  - substitute makefile variables into text files
 
 
-$usage = "Usage: $0 [-x<file dot-suffix>] [-Dstring=replacement] [[infile] ...]\n";
-
-$ext="out";
+$usage = "Usage: $0 [-Dstring=replacement] [[infile] ...]\n";
 
 if (!defined(@ARGV)) { die ("$usage"); }
 
 # read in the command line and get some definitions
 while ($_=$ARGV[0], /^-/) {
-  if (/^-[Dx]/) {
+  if (/^-D/) {
     # definition
     shift(@ARGV);
     if ( /-D(.*)=(.*)/ ) {
       $def{"$1"}=$2;
-    } elsif ( /-x\s*(\w+)/ ) {
-       $ext=$1;
     } else {
       die ("$usage$0: error in command line arguments.\n");
     }
@@ -34,17 +30,14 @@ if (!defined(%def)) {
 for $f (@ARGV) {
 
   $f =~ /(.*\/)*(.*)$/;
-  $of = $2.".$ext"; 
 
   open(IN, "<$f")          || die ("$0: input file $f missing!\n");
-  if (open(OUT, ">$of")) {
-    while (<IN>) {
-      for $s (keys(%def)) {
-       s#$s#$def{$s}#;
-      } # for $s
-      print OUT;
-    } # while <IN>
-  } # if (outfile open)
+  while (<IN>) {
+    for $s (keys(%def)) {
+      s#$s#$def{$s}#;
+    } # for $s
+    print;
+  } # while <IN>
 } # for $f
 
 exit 0;
This page took 0.218826 seconds and 4 git commands to generate.