学无止境

少年辛苦终身事,莫向光阴惰寸功。——唐·杜荀鹤《题弟侄书堂》


Shell 判断文件中是否存在字符串


if cat xxx.yml | grep "content">/dev/null

then

    return 1

else

    return 0

fi