shell 获取目录下的文件名

使用for循环获取

path="/root/test"
files=$(ls $path)
for file in $files
do
   echo $file
done


标签: files、path、file、ls、文件名、面试
  • 回复
隐藏