需要用到的几个操作符:%、%%、#、##
1.从右向左匹配:%和%%
--------------------------------------------------------------------------------
#!/bin/bash
file_name="text.gif"
name=${file_name%.*}
echo file name is $name
--------------------------------------------------------------------------------
输出的结果为:file name is text.
${VAR%.*}含义:从$VAR中删除位于%右侧的通配符左右匹配的字符串,通配符从右向左进行匹配。现在给变量name进行赋值,name=text.gif,那么通配符从右向左就会匹配到.gif.所以从$VAR中删除匹配结果。
#属于非贪婪操作符,他是从右向左匹配最短结果;
##属于贪婪操作符,会从右向左匹配符合条件的最长字符串;
---------------------------------------------------------------------------------
file_name="text.gif.bak.2012"
name=${file_name%.*}
name1=${file_name%%.*}
echo file name is $name
echo file name is $name1
---------------------------------------------------------------------------------
输出的结果:
file name is text.gif.bak
file name is text
操作符%%使用.*从右向左匹配到.gif.bak.2012
2.从左向右匹配:#和##
-------------------------------------------------------------------------------
#!/bin/bash
file_name="text.gif"
suffix=${file_name#*.}
echo suffix is : $suffix
--------------------------------------------------------------------------------
输出的结果: suffix is : gif
${VAR#*.}含义:从$VAR中删除位于#右侧的通配符所匹配到的字符串,通配符从左向右进行匹配。
##为贪婪操作符
---------------------------------------------------------------------------------
#!/bin/bash
file_name="text.gif.bak.2012.txt"
suffix=${file_name#*.}
suffix1=${file_name##*.}
echo suffix is : $suffix
echo suffix1 is : $suffix1
----------------------------------------------------------------------------------
输出结果:
suffix is : text.gif.bak.2012
suffix1 is : txt
操作符##使用*.从左向右匹配到text.gif.bak.2012
示例:定义变量url="man.linuxde.net"
echo ${url%.*} #移除.* 所匹配的最右边的内容
man.linuxde
echo ${url%%.*} #将从右边开始一直匹配到最左边的.*移除,贪婪操作符
man
echo ${url#*.} #移除*.所有匹配最左边的内容
.linuxde.net
echo ${url##*.} #将从左边开始一直匹配到最右边的*.移除,贪婪操作符
net