加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

shell 基础

发布时间:2020-12-15 21:25:23 所属栏目:安全 来源:网络整理
导读:shell 执行 demo.sh #! /bin/ bash echo " This is a demo " shell 执行 $ chmod 0777 demo. sh $ ./demo. sh This is a demo ? shell 注释 单行注释 以 # 开头的行就是注释,会被解释器忽略。 示例: #! /bin/ bash# echo " This is a comment " echo " Thi

shell 执行

demo.sh

#! /bin/bash

echo "This is a demo"

shell 执行

$ chmod 0777 demo.sh
$ ./demo.sh
This is a demo

?

shell 注释

  • 单行注释

    # 开头的行就是注释,会被解释器忽略。

    示例:

    #! /bin/bash
    
    #echo "This is a comment"
    echo "This is a demo"

    如上所示 demo.sh 执行后还是只会有一行输出

  • 多行注释
    :<<EOF
      注释内容...
      注释内容...
      注释内容...
    EOF

    示例:

    #! /bin/bash
    
    :<<EOF echo "This is a comment" echo "This is a comment" echo "This is a comment" echo "This is a comment" EOF echo "This is a demo"

    如上所示 demo.sh 示例中还是只会有一行输出。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读