UNIX Shell Script

出自KMU Wiki

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

目錄

Bourne shell(sh)

Variable

YOURVAR=some<br>echo $YOURVAR<br>echo ${YOURVAR}<br>


Flow control

if [ -f your_file ]; then
echo "your_file exists


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

C Shell