UNIX Shell Script

出自KMU Wiki

(修訂版本間差異)
跳轉到: 導航, 搜索
在2008年5月6日 (二) 19:16所做的修訂版本 (編輯)
Cch (對話 | 貢獻)

←上一個
當前修訂版本 (2008年5月7日 (三) 22:05) (編輯) (撤銷)
Cch (對話 | 貢獻)

 
(6個中途的修訂版本沒有顯示。)
第1行: 第1行:
-== Bourne shell(sh) ==+=== 動機 ===
 + 
 +為什麼要學 Shell Script
 + 
 +* automatic (自動化)
 +* batch (批次)
=== Variable === === Variable ===
-<pre>YOURVAR=some<br>echo $YOURVAR<br>echo ${YOURVAR}<br></pre> + 
-<br>+ YOURVAR=some
 + MYVAR=thing
 + echo $YOURVAR
 + echo ${YOURVAR}${MYVAR}
=== Flow control === === Flow control ===
-<pre>if [ -f your_file ]; then<br>+ 
-echo "your_file exists"<br>+ if [ -f your_file ]; then
-fi<br></pre> + echo "your_file exists"
-<br>+ else
-<pre>for f in a b c<br>do<br> + echo "your_file not exists"
-echo $f<br>+ fi
-done<br></pre> + 
 + for f in a b c
 + do
 + echo $f
 + done
 + 
=== Sub Program === === Sub Program ===
-<pre>sub()<br>{<br> echo $1 $2 $3<br>}sub X Y Z<br></pre> + 
 + sub()
 + {
 + echo $1 $2 $3
 + }
 + sub X Y Z
 + 
=== Examples === === Examples ===
-<pre>#!/bin/sh <br>exec &lt; $1<br>while read line <br>do<br>  
-echo $line<br> 
-done<br></pre>  
-== C Shell ==+ #!/bin/sh
 + exec < $1
 + while read line
 + do
 + echo $line
 + done
 + 
 +=== 學習資源 ===
 + 
 +[http://www.mgt.ncu.edu.tw/~dino/script/ http://www.mgt.ncu.edu.tw/~dino/script/]

當前修訂版本

目錄

[編輯] 動機

為什麼要學 Shell Script

  • automatic (自動化)
  • batch (批次)

[編輯] Variable

YOURVAR=some
MYVAR=thing
echo $YOURVAR
echo ${YOURVAR}${MYVAR}

[編輯] Flow control

if [ -f your_file ]; then
    echo "your_file exists"
else
    echo "your_file not exists"
fi
for f in a b c
do
    echo $f
done

[編輯] Sub Program

sub()
{
    echo $1 $2 $3
}
sub X Y Z

[編輯] Examples

#!/bin/sh
exec < $1
while read line
do
    echo $line
done

[編輯] 學習資源

http://www.mgt.ncu.edu.tw/~dino/script/