Get file extension with bash script
This question already has an answer here:
extension=$(echo sample.txt | cut -f 2 -d '.')
echo $extension
上面的命令会为您提供预期的txt
输出
上一篇: 如何使用特殊字符在unix中分割
下一篇: 用bash脚本获取文件扩展名
This question already has an answer here:
extension=$(echo sample.txt | cut -f 2 -d '.')
echo $extension
上面的命令会为您提供预期的txt
输出
上一篇: 如何使用特殊字符在unix中分割
下一篇: 用bash脚本获取文件扩展名