Shell__循环
#!/bin/shfor file in ./* do if test -f $file then echo $file echo 是文件 fi if test -d $file then echo $file echo 是目录 fidone
发布时间: 2012-11-08 08:48:11 作者: rapoo
Shell__循环
#!/bin/shfor file in ./* do if test -f $file then echo $file echo 是文件 fi if test -d $file then echo $file echo 是目录 fidone