标签:lin directory 文件 bash cto inux 无法 home nbsp
遍历某一目录下的所有文件或文档,并输出
#!/bin/bash for file in /home/linux/* do if [ -d "$file" ] then echo "$file is directory" elif [ -f "$file" ] then echo "$file is file" fi done
-d前后都要有空格,不然无法识别命令
标签:lin directory 文件 bash cto inux 无法 home nbsp
原文地址:https://www.cnblogs.com/canchan/p/11908865.html