shell:遍历目录和子目录的所有文件

前端之家收集整理的这篇文章主要介绍了shell:遍历目录和子目录的所有文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#!/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="$1"
getdir $root_dir

测试:




参考;https://www.cnblogs.com/xiaopipi/p/6214673.html

猜你在找的Bash相关文章