有问题:
if grep -xf test $option #find exact pattern from test in $option file
then
if [ -s test ]; #if not empty
then
echo OK!
fi
else #if empty or not matched
echo FAIL!
fi
我注意到在某些错误的情况下,可能在test
包含字符串时失败。也许引用我会介意的(-exf不起作用)?