zoukankan      html  css  js  c++  java
  • script.stub

    #!/bin/bash
    #
    # SCRIPT: NAME_of_SCRIPT
    # AUTHOR: AUTHORS_NAME
    # DATE:   DATE_of_CREATION
    # REV:    1.1.A (Valid are A, B, D, T and P)
    #               (For Alpha, Beta, Dev, Test and Production)
    #
    # PLATFORM: (SPECIFY: AIX, HP-UX, Linux, OpenBSD, Solaris
    #                      or Not platform dependent)
    #
    # PURPOSE: Give a clear, and if necessary, long, description of the
    #          purpose of the shell script. This will also help you stay
    #          focused on the task at hand.
    #
    # REV LIST:
    #        DATE: DATE_of_REVISION
    #        BY:   AUTHOR_of_MODIFICATION
    #        MODIFICATION: Describe what was modified, new features, etc--
    #
    #
    # set -n   # Uncomment to check script syntax, without execution.
    #          # NOTE: Do not forget to put the comment back in or
    #          #       the shell script will not execute!
    # set -x   # Uncomment to debug this shell script
    #
    ##########################################################
    #         DEFINE FILES AND VARIABLES HERE
    ##########################################################
    
    ##########################################################
    #           DEFINE FUNCTIONS HERE
    ##########################################################
    
    
    
    ##########################################################
    #            BEGINNING OF MAIN
    ##########################################################
    
    
    
    # End of script
  • 相关阅读:
    使用RF(robotframework)要安装哪些库
    MYSQL题目练习专用
    MySQL字段拼接
    WPF样式
    WPF数据模板
    WPF控件模板
    WPF布局
    面向对象程序设计原则
    设计模式之策略模式
    设计模式之简单工厂模式
  • 原文地址:https://www.cnblogs.com/ordili/p/5915219.html
Copyright © 2011-2022 走看看