Shell中的${}##和%%使用范例

Posted 谭普利特

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell中的${}##和%%使用范例相关的知识,希望对你有一定的参考价值。

假设定义了一个变量为,代码如下:

file=/dir1/dir2/dir3/my.file.txt

可以用${ }分别替换得到不同的值:

${file#*/}:      删掉第一个 / 及其左边的字符串:dir1/dir2/dir3/my.file.txt 非贪婪匹配
${file##*/}:     删掉最后一个 / 及其左边的字符串:my.file.txt 贪婪匹配
${file#*.}:        删掉第一个 . 及其左边的字符串:file.txt 
${file##*.}:     删掉最后一个 . 及其左边的字符串:txt
${file%/*}:      删掉最后一个 / 及其右边的字符串:/dir1/dir2/dir3
${file%%/*}:     删掉第一个 / 及其右边的字符串:(空值)
${file%.*}:      删掉最后一个 . 及其右边的字符串:/dir1/dir2/dir3/my.file
${file%%.*}:      删掉第一个 . 及其右边的字符串:/dir1/dir2/dir3/my

记忆的方法为:

#   是 去掉左边(键盘上#在 $ 的左边)
%  是去掉右边(键盘上% 在$ 的右边)
单一符号是非贪婪匹配;两个符号是贪婪匹配

${file:0:5}:提取最左边的 5 个字节:/dir1
${file:5:5}:提取第 5 个字节右边的连续5个字节:/dir2

也可以对变量值里的字符串作替换:
${file/dir/path}:将第一个dir 替换为path:/path1/dir2/dir3/my.file.txt
${file//dir/path}:将全部dir 替换为 path:/path1/path2/path3/my.file.txt

[[email protected] ~]# p=123abc
[[email protected] ~]# echo ${p//[0-9]/}      #将变量中的数字替换为空
abc

+----------------------------------------------------------------------+
|Form Meaning
+----------------------------------------------------------------------+
|${variable:?word} Complain if undefined or null
|${variable:-word} Use new value if undefined or null
|${variable:+word} Opposite of the above
|${variable:=word} Use new value if undefined or null, and redefine.
+----------------------------------------------------------------------+

foo=${bar:-something}

echo $foo # something
echo $bar # no assignement to bar, bar is still empty

foo=${bar:=something}

echo $foo # something
echo $bar # something too, as theres an assignement to bar

 

 














以上是关于Shell中的${}##和%%使用范例的主要内容,如果未能解决你的问题,请参考以下文章

介绍下Shell中的${}##和%%使用范例

介绍下Shell中的${}##和%%使用范例

linux中shell变量$#,$@,$0,$1,$2的含义解释/Shell中的${}##和%%使用范例/export

Eclipse 中的通用代码片段或模板

python threading超线程使用简单范例的代码

Shell正则表达式之grepsedawk实操笔记