专注编程技术
#!/bin/sh
for file in ./* #遍历的文件是当前目录,其他目录可以通过修改这个参数来实现
do
if test -f $file;then #是文件
echo $file
fi
if test -d $file;then #是目录
done
没有评论:
发表评论