本文摘自PHP中文网,作者不言,侵删。
有时你可能需要在不同的变量中提取文件名和扩展名来完成bash shell编程中的任务。本篇文章将介绍从完整的文件名或路径中提取文件名和文件扩展名。以下是详细的内容
1、获取没有路径的文件名:
首先从输入文件名中删除完整的文件路径。例如,如果文件名输入为/etc/apache2/apache2.conf,则仅提取完整文件名为apache.conf.
1 2 3 4 5 | #!/bin/bash
fullfilename= "/etc/apache2/apache2.conf"
filename=$(basename "$fullfilename" )
echo $filename
|
2、没有扩展名的文件名:
现在,从提取的不带路径的完整文件名中提取不带扩展名的文件名,如下所示。
1 2 3 4 5 | #!/bin/bash
fullfilename= "/etc/apache2/apache2.conf"
filename=$(basename "$fullfilename" )
fname= "${filename%.*}"
echo $fname
|
3、没有名称的文件扩展名:
现在从提取的不带路径的完整文件名中提取不带名称的文件扩展名。
1 2 3 4 5 6 | #!/bin/bash
fullfilename= "/etc/apache2/apache2.conf"
filename=$(basename "$fullfilename" )
ext= "${filename##*.}"
echo $ext
|
4、测试:
阅读剩余部分
相关阅读 >>
通过几个案例掌握shell编程条件分支结构
linux shell编程的实例教程
freeworld.posterous.com linux bash shell cheat sheet----autho:raphael
如何调试shell脚本?
一文读懂shell编程三剑客之一的sed命令
linux运维之shell变量.md
linux中的shell命令如何使用
shell脚本实现的乘法表实例
shell脚本高级编程的详细讲解
shell--标准输入输出(read&echo)
更多相关阅读请进入《shell》频道 >>
转载请注明出处:木庄网络博客 » 如何在Shell脚本中提取文件名和扩展名