shell脚本如何读取文件名?比如说TEST目录下有可能存在test1.sh ,test2.sh这样的文件我次需要运行最新的

2024-11-17 05:35:20
推荐回答(1个)
回答1:

在TEST目录下面:

ls -lt *.sh|head -1|awk '{print $NF}'