You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/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
|