001、
[root@PC1 test2]# a="a.csv.map.txt" [root@PC1 test2]# echo $a a.csv.map.txt [root@PC1 test2]# echo ${a%.*} a.csv.map [root@PC1 test2]# echo ${a%%.*} a
。
002、
[root@PC1 test2]# ls [root@PC1 test2]# a="a.csv.map.txt" [root@PC1 test2]# echo $a a.csv.map.txt [root@PC1 test2]# echo ${a#*.} csv.map.txt [root@PC1 test2]# echo ${a##*.} txt
。
ref
https://mp.weixin.qq.com/s?__biz=Mzg4ODA5NDEwNw==&mid=2247484641&idx=1&sn=0324dd66bc4c763b3333aa87af09fd2a&chksm=ce2ae4b4b9367f428ac4d90e03b8996946e0bb445a55252487c495db0eda60baad286e5f13ec&scene=132&exptype=timeline_recommend_article_extendread_samebiz&show_related_article=1&subscene=23&scene=132#wechat_redirect
标签:test2,PC1,echo,移除,shell,linux,txt,root,csv From: https://www.cnblogs.com/liujiaxin2018/p/18214603