shell怎么读取文件夹中的文件名

2024-11-07 15:43:50
推荐回答(1个)
回答(1):

#! /bin/bash
for file in `ls folder`
do
   echo $file
done

文件夹名换成实际地址,

file变量有可能是子文件夹,处理前需要进行判断