shell. 遍历文件夹
时间: 2023-09-21 21:11:49 浏览: 101
在Shell脚本中,遍历文件夹可以使用`ls`命令结合循环来实现。引用中的代码示例展示了两种遍历文件夹的方法。
第一种方法是使用`ls`命令获取当前文件夹的文件列表,然后通过`while`循环逐行读取文件名并进行处理。代码示例如下:
```shell
path=`pwd`
ls $path | while read line
do
echo $line
done
```
上述代码会将文件夹中的每个文件名逐行输出。
第二种方法是使用`ls`命令获取当前文件夹的文件列表,并将文件名保存到一个变量中,然后通过`for`循环逐个处理文件。代码示例如下:
```shell
pwd=`pwd`
filelist=`ls $dir`
for file in $filelist
do
echo $file
done
```
上述代码会将文件夹中的每个文件名逐个输出。
可以根据具体需求选择适合的方法来遍历文件夹。<span class="em">1</span><span class="em">2</span>
#### 引用[.reference_title]
- *1* [利用shell脚本遍历文件夹内所有的文件并作整理统计的方法](https://download.csdn.net/download/weixin_38638799/12842857)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *2* [shell遍历文件夹](https://blog.csdn.net/sinat_30062549/article/details/84854205)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文