码迷,mamicode.com
首页 > 系统相关 > 详细

shell中if 变量里包含字符串的判断

时间:2016-08-03 06:46:13      阅读:919      评论:0      收藏:0      [点我收藏+]

标签:shell

参考:

http://bbs.chinaunix.net/thread-1633281-1-1.html


需求:

判断变量cache_dir中是够包括"/data/cache"字符串


法1:

if [[ "${cache_dir}" =~ "/data/cache" ]]; then
   echo "true"
fi

法2:

if [[ ${cache_dir} = */data/cache* ]]; then
   echo "true"
fi

法3:

if echo ${cache_dir} |grep -q "/data/cache"; then
   echo "true"
fi

法4:

echo ${cache_dir} |grep -q "/data/cache" && echo "true" || echo "false"


特别说明,以上方法适用于所有遵从POSIX的shell,如ksh。


shell中if 变量里包含字符串的判断

标签:shell

原文地址:http://xoyabc.blog.51cto.com/7401264/1833778

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!