repo.or.cz
/
monitoring-plugins.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
This commit was manufactured by cvs2svn to create branch 'avendor'.
[monitoring-plugins.git]
/
subst.sh
blob
25606d30fcc463e32d13bbed565835d14ca8410d
1
#! /bin/sh
2
3
if
[
-x
/
bin
/
mktemp
];
then
4
TEMP
=
`/bin/mktemp
$1
.$$.XXXXXX`
||
exit
1
5
else
6
TEMP
=
$1
.$$.
`date +"%S"`
7
umask
177
8
touch
$TEMP
9
fi
10
11
sed
-f
subst
$1
>
$TEMP
12
13
chmod
+
x
$TEMP
14
touch
-r
$1 $TEMP
15
cp
-p
$TEMP $1
16
rm
$TEMP