1
0
Fork 0
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.
xcache/devel/lsnewini

9 lines
244 B
Bash

#!/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