linux學習shell篇

來源:互聯網
上載者:User

"Hello world" Shell Script 
照傳統程式教學例,介紹Shell Script的"Hello World"如何撰寫。

--------------------------------------------------------------------------------

#!/bin/sh 
# Filename : hello 
echo "Hello world!" 

--------------------------------------------------------------------------------

大家應該會注意到第一行的"#!/bin/sh"。在UNIX下,所有的可執行Script,不管是那一種語言,其開頭都是"#!",例如Perl是"#!/usr/bin/perl",tcl/tk是"#!/usr/bin/wish",看您要執行的Script程式位置在那裡。您也可以用"#!/bin/bash"、"#!/bin/tcsh"等等,來指定使用特定的Shell。 
echo是個bash的內建指令。 

 

--------------------------------------------------------------------------------

接下來,執行hello這個script: 
要執行一個Script的方式有很多種。 

--------------------------------------------------------------------------------

第一種 : 將hello這個檔案的許可權設定為可執行。 
[root@redhat proshell]# chmod 755 hello 
執行 
[root@redhat proshell]# ./hello 
hello world 

 

--------------------------------------------------------------------------------

第二種 : 使用bash內建指令"source"或"."。 
[root@redhat proshell]# source hello 
hello world 
或 
[root@redhat proshell]# . hello 
hello world 

 

--------------------------------------------------------------------------------

第三種 : 直接使用sh/bash/tcsh指令來執行。 
[root@redhat proshell]# sh hello 
hello world 
或 
[root@redhat proshell]# bash hello 
hello world 

 

--------------------------------------------------------------------------------

Bash執行選項 

--------------------------------------------------------------------------------

-c string : 讀取string來當命令。 
-i : 互動介面。 
-s : 由stdin讀取命令。 
- : 取消往後選項的讀取。 
-norc : 不要讀~/.bashrc來執行。 
-noprofile : 不要讀/etc/profile、~/.bash_profile、~/.bash_login、~/.profile等等來執行。 
-rcfile filename : 執行filename,而非~/.bashrc 
-version : 顯示版本。 
-quiet : 啟動時不要哩唆。 
-login : 確保bash是個login shell。 
-nobraceexpansion : 不要用curly brace expansion({}符號展開)。 
-nolineediting : 不用readline來讀取命令列。 
-posix : 改采Posix 1003.2標準。 

(參考:http://www.fanqiang.com)
 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.