summaryrefslogtreecommitdiffstats
path: root/subst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'subst.sh')
-rwxr-xr-xsubst.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/subst.sh b/subst.sh
new file mode 100755
index 0000000..25606d3
--- /dev/null
+++ b/subst.sh
@@ -0,0 +1,16 @@
1#! /bin/sh
2
3if [ -x /bin/mktemp ]; then
4 TEMP=`/bin/mktemp $1.$$.XXXXXX` || exit 1
5else
6 TEMP=$1.$$.`date +"%S"`
7 umask 177
8 touch $TEMP
9fi
10
11sed -f subst $1 > $TEMP
12
13chmod +x $TEMP
14touch -r $1 $TEMP
15cp -p $TEMP $1
16rm $TEMP