我有功能
function contain() {
if [[ $(echo "$1" | grep "$2" | wc -c) -gt 0 ]]; then
return 0
else
return 1
fi
}
当我写的时候
if [[ $(md5sum -c tool | grep -v "OK$" | wc -c) -gt 0 ]]; then
此
if contain "$(md5sum -c tool)" "OK$"
不想工作