Chinaunix首页 | 论坛 | 博客
  • 博客访问: 189898
  • 博文数量: 28
  • 博客积分: 2060
  • 博客等级: 大尉
  • 技术积分: 293
  • 用 户 组: 普通用户
  • 注册时间: 2008-07-11 19:31
文章存档

2011年(1)

2010年(10)

2009年(17)

我的朋友

分类:

2010-11-05 17:06:38

1、if [[ "$file" =~ 'start' ]]
2、或if [[ "$file" =~ "start" ]]

例子:
#!/usr/bin/ksh
file="10start11.s"
if [[ "$file" =~ "start" ]]
then
        echo "success"
else
        echo "failed"
fi

只有bash才支持[[

ksh在test中应该不支持正则,用awk grep sed等工具实现吧
flag=`echo $file |awk '/start/'`
if [ "$flag" = "" ];then
echo "success"
else
echo "failed"
fi 
阅读(13483) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2010-11-05 19:12:19

很好的, 收藏了 推荐一个博客,提供很多免费软件编程电子书下载: http://free-ebooks.appspot.com