mirror of
https://github.com/php/php-src.git
synced 2024-12-04 15:23:44 +08:00
25 lines
282 B
Bash
Executable File
25 lines
282 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$1" = "" ]; then
|
|
echo "Usage: $0 /somewhere/httpd.conf"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -w $1 ]; then
|
|
echo "You cannot write to $1"
|
|
exit 1
|
|
fi
|
|
|
|
TMPFILE=tmpfile.$$
|
|
|
|
awk -f conffix.awk <$1 >$TMPFILE
|
|
|
|
if [ "$?" != 0 ]; then
|
|
exit 1
|
|
fi
|
|
|
|
mv -f $1 $1.orig
|
|
mv -f $TMPFILE $1
|
|
exit 0
|
|
|