linux shell中移除变量文件名的后缀或者前缀
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
。
reference:
01、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