linux shell 基本规范
Posted 天行健,君子以自强不息
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux shell 基本规范相关的知识,希望对你有一定的参考价值。
- 开头指定脚本解释器
#!/bin/bash 或 #!/bin/sh
- 开头加版权信息
#Date: 2017-8-01 22:50 #Author: yang qiang wei #Mail: [email protected] #Funtion: This is delete ... #version: 1.0
- 脚本中不用中文注释
- 脚本以.sh结尾 如: install.sh
- 成对的符号一次性写出
- 中括号两端有空格 如: [ kkk ]
- 流程控制语句一次书写完
if then fi
- 使用缩进
以上是关于linux shell 基本规范的主要内容,如果未能解决你的问题,请参考以下文章