假设有变量 var=https://www.omicsclass.com/123.htm
1. # 号截取,删除左边字符,保留右边字符。
echo ${var#*//}
其中 var 是变量名,# 号是运算符,*// 表示从左边开始删除第一个 // 号及左边的所有字符
即删除 http://
结果是 :www.omicsclass.com/123.htm
2. ## 号截取,删除左边字符,保留右边字符。
echo ${var##*/}
##*/ 表示从左边开始删除最后(最右边)一个 / 号及左边的所有字符
即删除 https://www.omicsclass.com/
结果是 123.htm
3. %号截取,删除右边字符,保留左边字符
echo ${var%/*}
%/* 表示从右边开始,删除第一个 / 号及右边的字符
结果是:https://www.omicsclass.com
4. %% 号截取,删除右边字符,保留左边字符
echo ${var%%/*}
%%/* 表示从右边开始,删除最后(最左边)一个 / 号及右边的字符
结果是:http:
5. 从左边第几个字符开始,及字符的个数
echo ${var:0:5}
其中的 0 表示左边第一个字符开始,5 表示字符的总个数。
结果是:http:
6. 从左边第几个字符开始,一直到结束。
echo ${var:7}
其中的 7 表示左边第8个字符开始,一直到结束。
结果是 :www.omicsclass.com/123.htm
7. 从右边第几个字符开始,及字符的个数
echo ${var:0-7:3}
其中的 0-7 表示右边算起第七个字符开始,3 表示字符的个数。
结果是:123
8. 从右边第几个字符开始,一直到结束。
echo ${var:0-7}
表示从右边第七个字符开始,一直到结束。
结果是:123.htm
注:(左边的第一个字符是用 0 表示,右边的第一个字符用 0-1 表示)
描述的有点儿不容易懂,看了好久才勉强明白 # ## % %%。
#、## 表示从左边开始删除。一个 # 表示从左边删除到第一个指定的字符;两个 # 表示从左边删除到最后一个指定的字符。
%、%% 表示从右边开始删除。一个 % 表示从右边删除到第一个指定的字符;两个 % 表示从左边删除到最后一个指定的字符。
删除包括了指定的字符本身。
ls CytoscapeInput-nodes-*txt|while read a ;do o=${a%.*}; echo "$a $o";done
CytoscapeInput-nodes-blue2.txt CytoscapeInput-nodes-blue2
CytoscapeInput-nodes-coral1.txt CytoscapeInput-nodes-coral1
CytoscapeInput-nodes-darkgreen.txt CytoscapeInput-nodes-darkgreen
CytoscapeInput-nodes-darkorange2.txt CytoscapeInput-nodes-darkorange2
CytoscapeInput-nodes-darkseagreen4.txt CytoscapeInput-nodes-darkseagreen4
CytoscapeInput-nodes-darkslateblue.txt CytoscapeInput-nodes-darkslateblue
CytoscapeInput-nodes-grey.txt CytoscapeInput-nodes-grey
CytoscapeInput-nodes-honeydew1.txt CytoscapeInput-nodes-honeydew1
CytoscapeInput-nodes-indianred3.txt CytoscapeInput-nodes-indianred3
CytoscapeInput-nodes-lavenderblush2.txt CytoscapeInput-nodes-lavenderblush2
CytoscapeInput-nodes-lavenderblush3.txt CytoscapeInput-nodes-lavenderblush3
CytoscapeInput-nodes-lightblue4.txt CytoscapeInput-nodes-lightblue4
CytoscapeInput-nodes-lightcoral.txt CytoscapeInput-nodes-lightcoral
CytoscapeInput-nodes-lightcyan1.txt CytoscapeInput-nodes-lightcyan1
CytoscapeInput-nodes-lightslateblue.txt CytoscapeInput-nodes-lightslateblue
CytoscapeInput-nodes-mediumpurple1.txt CytoscapeInput-nodes-mediumpurple1
CytoscapeInput-nodes-mediumpurple2.txt CytoscapeInput-nodes-mediumpurple2
CytoscapeInput-nodes-orangered1.txt CytoscapeInput-nodes-orangered1
CytoscapeInput-nodes-orangered3.txt CytoscapeInput-nodes-orangered3
CytoscapeInput-nodes-paleturquoise.txt CytoscapeInput-nodes-paleturquoise
CytoscapeInput-nodes-pink4.txt CytoscapeInput-nodes-pink4
CytoscapeInput-nodes-plum.txt CytoscapeInput-nodes-plum
CytoscapeInput-nodes-sienna4.txt CytoscapeInput-nodes-sienna4
CytoscapeInput-nodes-skyblue4.txt CytoscapeInput-nodes-skyblue4
CytoscapeInput-nodes-thistle2.txt CytoscapeInput-nodes-thistle2
CytoscapeInput-nodes-thistle.txt CytoscapeInput-nodes-thistle
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!