Shell__循环
#!/bin/shfor file in ./* do if test -f $file then echo $file echo 是文件 fi if test -d $file then echo $file echo 是目录 fidone