初学shell
Posted 参婵
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了初学shell相关的知识,希望对你有一定的参考价值。
遍历某一目录下的所有文件或文档,并输出
#!/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前后都要有空格,不然无法识别命令
以上是关于初学shell的主要内容,如果未能解决你的问题,请参考以下文章