codecamp

Bash 入门

入门指南

  1. 打开终端,使用cd命令移动至目标目录。
  2. 使用touch命令创建一个空文件命名为bash_script.sh作为shell脚本的容器。
  3. 查看bash_script.sh文件的所有权限属性,在下图中可以看到该文件没有运行权限。
  4. 使用任意编辑器打开bash_script.sh,此处以gedit作为例子:
    $ gedit bash_script.sh
  5. 编写脚本代码,打印Hello World!
    #!/bin/bash
    ## This is the basic bash script
    echo " Hello World!"
    • 第一行是#!(SheBang)指定Ball Shell的路径
    • 第二行是注释行
    • 第三行是echo命令执行打印输出内容
  6. 将运行权限添加到文件。
    $ chmod +x bash_script.sh
  7. 使用./执行脚本,打印输出。
    $ ./bash_script.sh
    Hello World!
Bash 文件系统及权限
Bash 注释
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }