脚本的规范和基本结构,shell脚本示例,脚本调试

脚本规范

  • 脚本代码开头约定
    • 1、第一行一般为调用使用的语言
    • 2、程序名,避免更改文件名为无法找到正确的文件
    • 3、版本号
    • 4、更改后的时间
    • 5、作者相关信息
    • 6、该程序的作用,及注意事项
    • 7、最后是各版本的更新简要说明

脚本基本结构

#!SHEBANG
CONFIGURATION_VARIABLES
FUNCTION_DEFINITIONS
MAIN_CODE

shell脚本示例

#!/bin/bash
# ------------------------------------------
#Filename: hello.sh
# Revision: 1.1
# Date: 2017/06/01
# Author: wang
# Email: wang@gmail.com
# Website: www.magedu.com
# Description: This is the first script
# ------------------------------------------
# Copyright: 2017 wang
# License: GPL
echo “hello world”

脚本调试

检测脚本中的语法错误
bash -n /path/to/some_script
调试执行
bash -x /path/to/some_script

posted on 2018-07-19 09:18  圆缘  阅读(344)  评论(0编辑  收藏  举报

返顶部