git-svn-id: svn://svn.lighttpd.net/xcache/trunk@1005 c26eb9a1-5813-0410-bd6c-c2e55f420ca73.0
parent
8321be2cf7
commit
ac7d42eed5
@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
tmp1=`mktemp`
|
||||
tmp2=`mktemp`
|
||||
grep -F '=' xcache.ini |grep -v '^;' | sed -r -e 's# *=.*##' | sort > $tmp2
|
||||
grep 'PHP_INI.*("' *.c | sed -r -e 's#^[^"]*"([^"]*)".*#\1#' | sort > $tmp1
|
||||
diff -iu $tmp2 $tmp1 |grep '^[-+]'
|
||||
rm -f $tmp1 $tmp2
|
Loading…
Reference in new issue