Shell中#*/和%/*是什么意思?
shell中有许多奇特的语法:
比如有以下一段脚本;
#!/bin/sh
files=`find -name *.conifg`
for i in $files
do
name=${i#*/}
dir=${name%/*}
done
name和dir都代表什么呢?
假如
i=this/is/a/path.config
那么
name=is/a/path.config
dir=this/is/a
也就是说%/*代表取从头到最后一个slash之前的所有内容
#*/代表去取从第一个slash之后的所有内容
为了更好的理解,我们看一下具体的文档,可参考Advanced Bash-Scripting Guide一书:
${string#substring}Strip shortest match of $substring from front of $string
${string%substring}Strip shortest match of $substring from back of $string
也就是说
#代表删除从前往后最小匹配的内容
%代表删除从后往前最小匹配的内容
这样明白了吧。
原文:http://blog.csdn.net/hongchangfirst/article/details/28436947
作者:hongchangfirst
hongchangfirst的主页:http://blog.csdn.net/hongchangfirst
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。