bash:遍历文件

Posted 细雨微光

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bash:遍历文件相关的知识,希望对你有一定的参考价值。

#!/bin/bash
function getdir(){
    for element in `ls $1`
    do  
        dir_or_file=$1"/"$element
        if [ -d $dir_or_file ]
        then 
            getdir $dir_or_file
        else
            echo $dir_or_file
        fi  
    done
}
root_dir="/home/test"
getdir $root_dir

 

以上是关于bash:遍历文件的主要内容,如果未能解决你的问题,请参考以下文章

如何在bash中使用多个ifs遍历多个目录?

遍历bash中的几个文件[重复]

bash:遍历文件

for 使用 Bash 遍历目录中的特定文件

使用 Bash find 遍历目录中的特定文件

-bash: /usr/bin/ls: /lib64/ld-linux-x86-64.so.2: bad ELF interpreter: No such file or directory(代码片段