Shell 脚本的组成部分

作者: 赵者也 | 来源:发表于2017-03-08 21:50 被阅读15次

    本文参考自 《Linux Shell命令行及脚本编程实例详解

    Shell 脚本的组成部分:
    1.Shell 关键字 —— 例如 if...else,for do...done
    2.Shell 命令 —— 例如 export,echo,exit,pwd,return
    3.Linux 命令 —— 例如 date,rm,mkdir
    4.文本处理功能 —— 例如 awk,cut,sed,grep
    5.函数 —— 通过函数把一些常用的功能放在一起。例如,/etc/init.d 目录中的大部分或全部系统 Shell 脚本所使用的函数都包含在文件 /etc/init.d/functions 中。
    6.控制流语句 —— 例如 if...then...else 或执行重复操作的 Shell 循环。

    相关文章

      网友评论

        本文标题:Shell 脚本的组成部分

        本文链接:https://www.haomeiwen.com/subject/txeigttx.html