個人整理的Linux Shell文法速查表

來源:互聯網
上載者:User
個人整理的Linux Shell文法速查表(用C語言文法來作對比)

雖然學過Linux Shell編程,但由於編寫Shell指令碼的機會實在是比較少(通常在項目初期搭建開發環境時編寫得比較 多一些),所以一 些文法久而久之就會忘了,一個簡單的文法去翻書效率實在是慢,所以就個人整理了一個表格,由於我用的程式設計語言是C/C++,所以在編程的時候往往腦海裡面首 先浮現的是用C語 言怎麼去編寫它,所以我乾脆拿C語言的文法來和Shell編程的文法作個對比表,這樣查起來就方便了,哈:

 

 (註:不知道為什麼從WORD中粘帖的表格在這裡顯示會不完整,在 編輯的時候又是正常的,悶)

 

 

要實現的功能

C語言編程

Linux Shell指令碼編程

程式/指令碼的參數傳遞

int main(int argc, char** argv)

{

if (argv != 4) {

    printf( “Usage: %s arg1 arg2 arg3”, argv[0] );

    return 1;

}

 

printf(“arg1:%s\n”,argv[1]);

printf(“arg2:%s\n”,argv[2]);

printf(“arg3:%s\n”,argv[3]);

return 0;

}

#!/bin/sh

 

if [ $# -lt 3 ]; then

    echo "Usage: `basename $0` arg1 arg2 arg3" >&2

    exit 1

fi

 

echo "arg1: $1"

echo "arg2: $2"

echo "arg3: $3"

exit 0

int main(int argc, char** argv)

{

    int i;

for (i=1; i<=argc;i++) {

printf(“arg:%s\n”,argv[i]);

}

return 0;

}

#!/bin/sh

 

while [ $# -ne 0 ]

do

    echo "arg: $1"

    shift

done

邏輯/數值運算

if (d == 0)

if [ "$D" -eq "0" ] ; then

if (d != 0)

if [ "$D" -ne "0" ] ; then

if (d > 0)

if [ "$D" -gt "0" ] ; then

if (d < 0)

if [ "$D" -lt "0" ] ; then

if (d <= 0)

if [ "$D" -le "0" ] ; then

if (d >= 0)

if [ "$D" -ge "0" ] ; then

字串比較

if (strcmp(str,”abc”)==0) {

}

if [ "$STR" != "abc" ]; then

fi

輸入和輸出

scanf(“%d”,&D);

read D

printf( “%d”, D);

echo –n $D

printf( “%d”,D);

echo $D

printf( “Press any to continue...”);

char ch=getchar();

printf( “\nyou pressed: %c\n”, ch );

#!/bin/sh

 

getchar()

{

SAVEDTTY=`stty -g`

stty cbreak

dd if=/dev/tty bs=1 count=1 2> /dev/null

stty -cbreak

stty $SAVEDTTY

}

 

echo -n "Press any key to continue..."

CH=`getchar`

echo ""

echo "you pressed: $CH"

 

read D <&3

程式/指令碼的控制流程程

if (isOK) {

    //1

} else if (isOK2) {

    //2

} else {

    //3

}

if [ isOK ]; then

    #1

elif [ isOK2 ]; then

    #2

else

    #3

fi

switch (d)

{

case 1:

printf(“you select 1\n”);

break;

case 2:

case 3:

printf(“you select 2 or 3\n”);

break;

default:

printf(“error\n”);

break;

};

case $D in

1) echo "you select 1"

    ;;

2|3) echo "you select 2 or 3"

    ;;

*) echo "error"

    ;;

esac

for (int loop=1; loop<=5;loop++) {

     printf( “%d”, loop);

}

for loop in 1 2 3 4 5

do

    echo $loop

done

do {

    sleep(5);

} while( !isRoot );

IS_ROOT=`who | grep root`

until [ "$IS_ROOT" ]

do

    sleep 5

done

counter=0;

while( counter < 5 ) {

printf( “%d\n”, counter);

counter++;

}

COUNTER=0

while [ $COUNTER -lt 5 ]

do

echo $COUNTER

    COUNTER=`expr $COUNTER + 1`

done

while (1) {

}

while :

do

done

break;

break或break n,n表示跳出n級迴圈

continue;

continue

函數與過程的定義

void hello()

{

    printf( “hello\n” );

}

//函數調用

hello();

hello()

{

    Echo “hello”

} 或者

function hello()

{

    Echo “hello”

}

#函數調用

hello

函數的參數和傳回值

int ret = doIt();

if (ret == 0) {

    printf( “OK\n” );

}

doIt

if [ “$?” –eq 0 ] ; then

echo “OK”

fi

或者

RET = doIt

if [ “$RET” –eq “0” ] ; then

echo “OK”

fi

int sum(int a,int b)

{

return a+b;

}

int s = sum(1,2);

printf(“the sum is: %d\n”, s);

sum()

{

    echo -n "`expr $1 + $2`"

}

S=`sum 1 2`

echo "the sum is: $S"

bool isOK() { return false; }

if (isOK) {

    printf( “YES\n” );

} else {

    printf( “NO\n” );

}

isOK()

{

    return 1;

}

if isOK ; then

    echo "YES"

else

    echo "NO"

fi

 

相關文章

聯繫我們

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