]> andersk Git - openssh.git/blobdiff - fixpaths
- djm@cvs.openbsd.org 2010/01/30 02:54:53
[openssh.git] / fixpaths
index edd9e486f17e119c0f18af96096da413c6cfb7c7..60a67990f173e053ed7bdd9da5a11c3d1955937e 100755 (executable)
--- a/fixpaths
+++ b/fixpaths
@@ -1,49 +1,22 @@
-#!/usr/bin/perl -w
+#!/bin/sh
 #
 # fixpaths  - substitute makefile variables into text files
+# Usage: fixpaths -Dsomething=somethingelse ...
 
-
-$usage = "Usage: $0 [-x<file dot-suffix>] [-Dstring=replacement] [[infile] ...]\n";
-
-$ext="out";
-
-if (!defined(@ARGV)) { die ("$usage"); }
-
-# read in the command line and get some definitions
-while ($_=$ARGV[0], /^-/) {
-  if (/^-[Dx]/) {
-    # definition
-    shift(@ARGV);
-    if ( /-D(.*)=(.*)/ ) {
-      $def{"$1"}=$2;
-    } elsif ( /-x\s*(\w+)/ ) {
-       $ext=$1;
-    } else {
-      die ("$usage$0: error in command line arguments.\n");
-    }
-  } else {
-    @cmd = split(//, $ARGV[0]); $opt = $cmd[1];
-    die ("$usage$0: unknown option '-$opt'\n");
-  }
-} # while parsing arguments
-
-if (!defined(%def)) {
-  die ("$0: nothing to do - no substitutions listed!\n");
+die() {
+       echo $*
+       exit -1
 }
 
-for $f (@ARGV) {
+test -n "`echo $1|grep -- -D`" || \
+       die $0: nothing to do - no substitutions listed!
+
+test -n "`echo $1|grep -- '-D[^=]\+=[^ ]\+'`" || \
+       die $0: error in command line arguments.
 
-  $f =~ /(.*\/)*(.*)$/;
-  $of = $2.".$ext"; 
+test -n "`echo $*|grep -- ' [^-]'`" || \
+       die Usage: $0 '[-Dstring=replacement] [[infile] ...]'
 
-  open(IN, "<$f")          || die ("$0: input file $f missing!\n");
-  open(OUT, ">$of")        || die ("$0: cannot create output file $of: $!\n");
-  while (<IN>) {
-    for $s (keys(%def)) {
-      s#$s#$def{$s}#;
-    } # for $s
-    print OUT;
-  } # while <IN>
-} # for $f
+sed `echo $*|sed -e 's/-D\([^=]\+\)=\([^ ]*\)/-e s=\1=\2=g/g'`
 
-exit 0;
+exit 0
This page took 0.044105 seconds and 4 git commands to generate.