本篇內(nèi)容介紹了“Linux Shell 數(shù)組的創(chuàng)建及使用方法”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
成都創(chuàng)新互聯(lián)公司成立于2013年,先為千陽等服務(wù)建站,千陽等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為千陽企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。linux shell在編程方面比windows 批處理強大太多,無論是在循環(huán)、運算。已經(jīng)數(shù)據(jù)類型方面都是不能比較的。 下面是個人在使用時候,對它在數(shù)組方面一些操作進(jìn)行的總結(jié)。
1.數(shù)組定義
[chengmo@centos5 ~]$ a=(1 2 3 4 5) [chengmo@centos5 ~]$ echo $a
一對括號表示是數(shù)組,數(shù)組元素用“空格”符號分割開。
2.數(shù)組讀取與賦值
得到長度:
[chengmo@centos5 ~]$ echo ${#a[@]} 5
用${#數(shù)組名[@或*]} 可以得到數(shù)組長度
讀取:
[chengmo@centos5 ~]$ echo ${a[2]} 3 [chengmo@centos5 ~]$ echo ${a[*]} 1 2 3 4 5
用${數(shù)組名[下標(biāo)]} 下標(biāo)是從0開始 下標(biāo)是:*或者@ 得到整個數(shù)組內(nèi)容
賦值:
[chengmo@centos5 ~]$ a[1]=100 [chengmo@centos5 ~]$ echo ${a[*]} 1 100 3 4 5 [chengmo@centos5 ~]$ a[5]=100 [chengmo@centos5 ~]$ echo ${a[*]} 1 100 3 4 5 100
直接通過 數(shù)組名[下標(biāo)] 就可以對其進(jìn)行引用賦值,如果下標(biāo)不存在,自動添加新一個數(shù)組元素
刪除:
[chengmo@centos5 ~]$ a=(1 2 3 4 5) [chengmo@centos5 ~]$ unset a [chengmo@centos5 ~]$ echo ${a[*]} [chengmo@centos5 ~]$ a=(1 2 3 4 5) [chengmo@centos5 ~]$ unset a[1] [chengmo@centos5 ~]$ echo ${a[*]} 1 3 4 5 [chengmo@centos5 ~]$ echo ${#a[*]} 4
直接通過:unset 數(shù)組[下標(biāo)] 可以清除相應(yīng)的元素,不帶下標(biāo),清除整個數(shù)據(jù)。
3.特殊使用
分片:
[chengmo@centos5 ~]$ a=(1 2 3 4 5) [chengmo@centos5 ~]$ echo ${a[@]:0:3} 1 2 3 [chengmo@centos5 ~]$ echo ${a[@]:1:4} 2 3 4 5 [chengmo@centos5 ~]$ c=(${a[@]:1:4}) [chengmo@centos5 ~]$ echo ${#c[@]} 4 [chengmo@centos5 ~]$ echo ${c[*]} 2 3 4 5
直接通過 ${數(shù)組名[@或*]:起始位置:長度} 切片原先數(shù)組,返回是字符串,中間用“空格”分開,因此如果加上”()”,將得到切片數(shù)組,上面例子:c 就是一個新數(shù)據(jù)。
替換:
[chengmo@centos5 ~]$ a=(1 2 3 4 5) [chengmo@centos5 ~]$ echo ${a[@]/3/100} 1 2 100 4 5 [chengmo@centos5 ~]$ echo ${a[@]} 1 2 3 4 5 [chengmo@centos5 ~]$ a=(${a[@]/3/100}) [chengmo@centos5 ~]$ echo ${a[@]} 1 2 100 4 5
調(diào)用方法是:${數(shù)組名[@或*]/查找字符/替換字符} 該操作不會改變原先數(shù)組內(nèi)容,如果需要修改,可以看上面例子,重新定義數(shù)據(jù)。
從上面講到的,大家可以發(fā)現(xiàn)linux shell 的數(shù)組已經(jīng)很強大了,常見的操作已經(jīng)綽綽有余了。
“Linux Shell 數(shù)組的創(chuàng)建及使用方法”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!