标签: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