]> andersk Git - openssh.git/blame - fixpaths
- djm@cvs.openbsd.org 2010/01/30 02:54:53
[openssh.git] / fixpaths
CommitLineData
a76550cf 1#!/bin/sh
d2dcff5f 2#
3# fixpaths - substitute makefile variables into text files
a76550cf 4# Usage: fixpaths -Dsomething=somethingelse ...
d2dcff5f 5
a76550cf 6die() {
7 echo $*
8 exit -1
d2dcff5f 9}
10
a76550cf 11test -n "`echo $1|grep -- -D`" || \
12 die $0: nothing to do - no substitutions listed!
13
14test -n "`echo $1|grep -- '-D[^=]\+=[^ ]\+'`" || \
15 die $0: error in command line arguments.
d2dcff5f 16
a76550cf 17test -n "`echo $*|grep -- ' [^-]'`" || \
18 die Usage: $0 '[-Dstring=replacement] [[infile] ...]'
d2dcff5f 19
a76550cf 20sed `echo $*|sed -e 's/-D\([^=]\+\)=\([^ ]*\)/-e s=\1=\2=g/g'`
d2dcff5f 21
a76550cf 22exit 0
This page took 0.248153 seconds and 5 git commands to generate.