第一個shell程式:hello world

來源:互聯網
上載者:User

    1 shell script必須具備可讀與可執行(rx)的許可權。

 

    2 script的執行方式的區別:

      1)sh script_name或./script_name:在子進程中執行(一個新的bash環境)

     

       2)source script_name:在父進程中執行

    【提示】當子進程完成後,子進程內的各項變數或者操作將會結束而不會傳回到父進程中

     3  script的編程習慣
           1)程式的內容說明:script的用途、作者、建立日期等
           2)主要環境變數的聲明:如,PATH、LANG等
           3)適當的地方作注釋
           4)2/4縮排

 

    4 hello world

[root@localhost Desktop]# mkdir think[root@localhost Desktop]# lsthink[root@localhost Desktop]# cd think[root@localhost think]# vim shell01.sh

 

#! /bin/bash#program:#the program is for outputting "hello world"#history:#date 2012/9/5 autor think version 1stPATH=/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin#begin programecho -e "hello\fworld \n"exit 1

 

[root@localhost think]# chmod +rx shell01.sh[root@localhost think]# ./shell01.shhello     world [root@localhost think]# echo $?1

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.