Shell获取文件的文件名和扩展名的例子
更新时间:2014年06月27日 08:50:52 投稿:junjie
这篇文章主要介绍了Shell获取文件的文件名和扩展名的例子,简明版的代码实例,看了就懂,需要的朋友可以参考下
basename example.tar.gz .tar.gz # => example FILE="example.tar.gz" echo "${FILE%%.*}" # => example echo "${FILE%.*}" # => example.tar echo "${FILE#*.}" # => tar.gz echo "${FILE##*.}" # => gz # 在bash中可以这么写 filename=$(basename "$fullfile") extension="${filename##*.}" filename="${filename%.*}"
相关文章
shell脚本学习指南[四](Arnold Robbins & Nelson H
这篇文章主要介绍了shell脚本学习指南[四](Arnold Robbins & Nelson H.F. Beebe著),需要的朋友可以参考下2014-02-02
最新评论