zoukankan      html  css  js  c++  java
  • Shell编程实例

    参考文档:https://www.cnblogs.com/xuziyu/p/10687781.html

    实例1:输出字符串

    脚本test01.sh

    #!/bin/bash
    #打印输出
    echo "#######################################"
    echo "This is the first shell script!"
    echo "#######################################"  
    

    执行命令:

    sh test01.sh
    

     

    执行结果:

    #######################################
    This is the first shell script!
    #######################################
    

      

    实例2:变量引用

    1)变量定义等号前后不能有空格;

    2)使用单引号、双引号、无引号定义的变量,是静态变量;

    3)使用反引号引用的变量为命令,是动态变量;

    4)引用变量用${},变量放在大括号里面;

    脚本:test02.sh

    #!/bin/bash
    #变量引用
    echo "######################################################################"
    name=wzl
    date=`date`
    echo "my name is ${name}"
    echo "now time is ${date}"
    echo "######################################################################"
    

      

    执行命令;

    sh test02.sh
    

      

    执行结果:

    ######################################################################
    my name is wzl
    now time is Mon Jun  8 20:24:51 CST 2020
    ######################################################################
    

      

  • 相关阅读:
    静态(static)、虚拟(virtual)、动态(dynamic)或消息处理(message)
    SQLLITE
    SQLite数据表和视图
    SQLite
    DELPHI 泛型
    indy10 学习2
    indy10 线程池
    indy
    Indy10 控件的使用(2)TidTCpServer组件学习
    Socket心跳包机制
  • 原文地址:https://www.cnblogs.com/wzl0916/p/13068230.html
Copyright © 2011-2022 走看看