Shell理論學習(四)

來源:互聯網
上載者:User

標籤:字串

  • 取字串切片

1.由第四個字串開始,截取字串,至字串結束

[[email protected] ~]# myname="Hello myworld"[[email protected] ~]# substr=${myname:3}[[email protected] ~]# echo $substrlo myworld

2.由第6個字串開始,截取8個字元長度的字串

[[email protected] ~]# filename="/root/test.txt"[[email protected] ~]# substr=${filename:6:8}[[email protected] ~]# echo $substrtest.txt

3.取部分位置變數

#! /bin/bashecho $0echo ${@:1}    由第一個位置變數開始,去所有的位置變數執行結果:[[email protected] ~]# ./1.sh 66 77 88 99./1.sh66 77 88 99

4.計算字串長度

[[email protected] ~]# filename="/root/test.txt"[[email protected] ~]# echo ${#filename}14
  • 變數擴充:對比樣式

  1. 由字串前面相比,刪除相符者,刪除最短的

[[email protected] ~]# filename="/etc/sysconfig/network-scripts/ifcfg-eth0"[[email protected] ~]# r=${filename#/*/}[[email protected] ~]# echo $rsysconfig/network-scripts/ifcfg-eth0

2.由字串前面相比,刪除相符者,刪除最長的

[[email protected] ~]# filename="/etc/sysconfig/network-scripts/ifcfg-eth0"[[email protected] ~]# r=${filename##/*/}[[email protected] ~]# echo $rifcfg-eth0

3.由字串後面相比,刪除相符者,刪除最短的

[[email protected] ~]# filename="/etc/sysconfig/network-scripts/ifcfg-eth0"[[email protected] ~]# r=${filename%/*}[[email protected] ~]# echo $r/etc/sysconfig/network-scripts

4.有字串後面相比,刪除相符者,刪除最長的

[[email protected] ~]# url="www.baidu.com"[[email protected] ~]# r=${url%%.*}[[email protected] ~]# echo $rwww
  • 取代或刪除部分字串

文法:${變數/樣式/替換的字串}

  1. 只替換第一個符合的字串

[[email protected] ~]# act="root:x:0:0:root:/root:/bin/bash"[[email protected] ~]# r=${act/:/#}[[email protected] ~]# echo $rroot#x:0:0:root:/root:/bin/bash

2.替換所有的符合的字串

[[email protected] ~]# act="root:x:0:0:root:/root:/bin/bash"[[email protected] ~]# r=${act//:/#}[[email protected] ~]# echo $rroot#x#0#0#root#/root#/bin/bash
  • 把對比符合的字串刪除

文法:${變數/樣式}

  1. 只刪除第一個符合的字串

[[email protected] ~]# act="root:x:0:0:root:/root:/bin/bash"[[email protected] ~]# r=${act/:/}[[email protected] ~]# echo $rrootx:0:0:root:/root:/bin/bash

2.刪除所有符合的字串

[[email protected] ~]# act="root:x:0:0:root:/root:/bin/bash"[[email protected] ~]# r=${act//:/}[[email protected] ~]# echo $rrootx00root/root/bin/bash
  • 取變數名稱列表,數組索引列表

  1. 取變數名稱列表

[[email protected] ~]# filename="ifcfg-eth0"[[email protected] ~]# dir="/etc/sysconfig/network-scripts/"[[email protected] ~]# dir_file="$dir/$filename"[[email protected] ~]# echo ${[email protected]}dir dir_file

2.取數組索引列表

[[email protected] ~]# ar=(a b c xy z)

[[email protected] ~]# r=${!ar[@]}
[[email protected] ~]# echo $r
0 1 2 3 4

  • 流量控制語句

  1. 使用複合命令((算數運算))

  2. 使用Bash關鍵詞[[]]組成的式子:[[判斷式]]

[[email protected] ~]# if [[ str > xyz ]];then> echo "字串str比較大"> else> echo "字串str比較小"> fi字串str比較小

3.使用內建命令:test判斷式


本文出自 “Linux革命” 部落格,請務必保留此出處http://kaibinyuan.blog.51cto.com/7304008/1619672

Shell理論學習(四)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.