#!/bin/sh for file in ./*do if [ -f $file ];then echo $file echo 是文件 fi if [ -d $file ];then echo $file echo 是目录 fidone
时间: 2024-11-05 17:22:38
#!/bin/sh for file in ./*do if [ -f $file ];then echo $file echo 是文件 fi if [ -d $file ];then echo $file echo 是目录 fidone