标签:命令 假设 linux命令 app local div use host 去掉
假设文件的路径是/home/test/test.txt,把test赋值给file_name:
[c.plm@localhost ~]$ file_name=`basename /home/test/test.txt ` [c.plm@localhost ~]$ echo $file_name test.txt [c.plm@localhost ~]$
[c.plm@localhost ~]$ file_name=`basename /home/test/test.txt .txt` [c.plm@localhost ~]$ echo $file_name test [c.plm@localhost ~]$
linux命令basename:去掉路径和扩展名,得到指定文件的文件名(去除文件扩展名.xxx)
标签:命令 假设 linux命令 app local div use host 去掉
原文地址:https://www.cnblogs.com/forforever/p/12417131.html