码迷,mamicode.com
首页 > 编程语言 > 详细

记linux shell的两个小技巧:shell数组和字符串判断

时间:2016-07-01 16:36:48      阅读:463      评论:0      收藏:0      [点我收藏+]

标签:shell   数组   字符包含   

  最近在使用shell写脚本的时候,想实现python中两个很简单的功能:1:判断一个字符串是否包含另一个字符串。2:怎么用实现python的列表功:1。这里跟大家分享一下。


1:判断一个字符串是否包含另一个字符串:

string="abcdefg"
if [[ "$string" =~ "abc" ]];then
  echo "do something.."
else
  echo "nothing.."
fi

 以上的shell判断"abc"是否包含在字符串$string中。

 运行结果为:do something..


2:使用shell的数组达到python的列表效果。

 定义数组:

  # test=(a b c d e f g)

  查看数组:

  # echo ${test[@]}

   a b c d e f g

  往数组中追加一个元素e:

  # test=(${test[@]} e)  

  # echo ${test[@]}

   a b c d e f g e

 通过下标索引删除一个元素,shell数组的下表和python一样,是从0开始的,所以2下标代表的是第三个元素c:

  # unset test[2]

  # echo ${test[@]}

   a b d e f g e

 数组分片,以下命令截取了test数组0-3的元素范围,即前三个元素:

 # echo ${test[@]:0:3}

   a b d

 循环访问数组: 

# for element in ${test[@]}
 do
 echo "This is $element..."
 done
#result 
This is a...
This is b...
This is d...
This is e...
This is f...
This is g...
This is e...

  

本文出自 “扮演上帝的小丑” 博客,转载请与作者联系!

记linux shell的两个小技巧:shell数组和字符串判断

标签:shell   数组   字符包含   

原文地址:http://icenycmh.blog.51cto.com/4077647/1794868

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