Shell

作者: Sendom | 来源:发表于2018-04-25 10:34 被阅读0次

    运行脚本语言

    1. 给shell脚本赋权:chmod +x shell.sh
    2. 三种运行方式
      1. bash shell.sh
      2. shell.sh
      3. ./shell.sh
      4. source shell.sh

    打印

    1. echo
    #! /bin/bash -v
    # shell.sh
    echo "Hello,World"
    

    #!是使用指定的解释器-bash -v 会打印源码

    数值运算

    整数运算

    1. 整数运算

      i=0
      ((i++))
      echo $i
      

    相关文章

      网友评论

          本文标题:Shell

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