【SHELL】通过SHELL和字符串操作实现对目录、子目录、文件遍历

temp="/usr"

ListPath()
{
	[ ! -z "$1" ] && temp="${temp}/$1"
	echo "${temp}"
	for i in $(ls)
	do
		#echo "$1 sub path item: $i"
		if [ -f ${i} ]; then
			echo "$temp/${i} is file"
		elif [ -d ${i} ]; then
			echo "$temp/${i} is path"
		  	cd ${i}
			ListPath ${i} 
			temp=${temp%/*}
			cd ${temp}
		fi
	done
}

ListPath ""

运行效果如下: 

【SHELL】通过SHELL和字符串操作实现对目录、子目录、文件遍历_第1张图片

你可能感兴趣的:(linux,运维)