码迷,mamicode.com
首页 > 系统相关 > 详细

travelsal all files in a dir using recursion shell

时间:2018-08-15 20:26:59      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:one   UNC   ash   file   func   code   color   home   bin   

 

#!/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

 

travelsal all files in a dir using recursion shell

标签:one   UNC   ash   file   func   code   color   home   bin   

原文地址:https://www.cnblogs.com/zealousness/p/9483555.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!