empty.sh
来自「linux平台中」· Shell 代码 · 共 34 行
SH
34 行
#!/bin/sh# test that the empty file means no pattern# and an empty pattern means match all.: ${srcdir=.}failures=0for options in '-E' '-E -w' '-F -x' '-G -w -x'; do # should return 0 found a match echo "" | ${GREP} $options -e '' > /dev/null 2>&1 if test $? -ne 0 ; then echo "Status: Wrong status code, test \#1 failed ($options)" failures=1 fi # should return 1 found no match echo "abcd" | ${GREP} $options -f /dev/null > /dev/null 2>&1 if test $? -ne 1 ; then echo "Status: Wrong status code, test \#2 failed ($options)" failures=1 fi # should return 0 found a match echo "abcd" | ${GREP} $options -f /dev/null -e "abcd" > /dev/null 2>&1 if test $? -ne 0 ; then echo "Status: Wrong status code, test \#3 failed ($options)" failures=1 fidoneexit $failures
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?