初学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的主要内容,如果未能解决你的问题,请参考以下文章

Shell初学传参

PHP必用代码片段

用于确保在任何给定时间仅运行一个 shell 脚本的 shell 片段 [重复]

shell 脚本 片段

vue2.0 代码功能片段

nodejs常用代码片段