Linuxl下C編程系列–Shell

來源:互聯網
上載者:User

shell指令碼(.sh):類似windows下的批處理bat.檔案
比批處理強大,已經是一強大的程式設計語言了。

echo "please enter your name:";
read fname;
echo ${fname}   //{}可以省略

預設資料類型為 字元類型

env 查看環境變數
echo $HOME  查看目前使用者目錄
echo $PATH

./執行;也可以修改
vi /etc/profile

增加 PATH=$PATH:.
export PATH 匯出為全域變數。(需要重啟)這樣就不用加./了

echo `date`  顯示日期 (波浪線下面那個反引號)

expt 4 + 5   算出9,+左右必須有空格
也可以這樣:echo $((4+5))

例子1:
echo "Please enter socre:"
read  score

if [ $score -lt 80 ]  //如果小於80
then
   echo "Bad!";
elif [ $score ge 80 -a $score -lt 90 ] //如果大於等於80並且小於90
   echo "Good!";
else
   echo "Very Good!";
fi   //結束判斷

在vi中設定行號 :set nu
:wq儲存退出

例子2:
echo "Serices:"
echo -n "1)ls"    //-n表示不換行
echo -n "2)ls -l"
echo -n "3)Exit"
echo "Please chioce[1-3]"
read choice

case $choice in
 1) ls;;
 2) ls -l;;
 3) exit;
 *) echo "Wrong input";;
esac  //結束

例子3:
ecode=1000
while [ $ecode -le 1002 ]   //[]前後都有空格
do
 echo "Please enter info ecode=$ecode"
 echo "Enter name:"
 read name
 echo "Enter age:"
 read age
 echo "Name:$name Age=$age">>AA.dat
 ((ecode=$ecode+1))
done

 

聯繫我們

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