Shell(BASH) 編程

來源:互聯網
上載者:User

標籤:

SHELL PROGRAMMING

 

目錄:

1.shell簡單介紹

2.shell 編程準備

3.shell編程結構化語言構建

4.其他

5.shell編程的兩個樣本

寫在前面:

1.Hello World

#!/bin/bash# This is an example of bash HelloWorld# You can start shell programming with an Hello World example
echo ‘Hello World‘

 

2.計算1+1=2

#!/bin/bash## This example will bring you to bash shell more deeply.# Function: add two input numbers and then print the result.if [ $# -ne 2 ]                                # error handlingthen    echo "Usage - $0   x    y"                 # display help message     echo "        Where x and y are two nos for which I will print sum"    exit 1fi    echo "Sum of $1 and $2 is `expr $1 + $2`"

 

 

本文:

 

1.shell簡單介紹

  我們都知道,電腦識別的是二進位語言,電腦指令也是用二進位來表示的,但這對我們來說卻相當困難。所以在一些作業系統中就有一個特殊程式叫做shell, shell接受你輸入的指令,並且如果它是正確的話,就會將該指令傳遞到核心。

  shell是一個使用者程式或者說是一種由電腦與使用者互動的環境。shell是一種解釋型語言,可以執行來自標準輸入裝置(鍵盤)或者是檔案的命令。 Linux shell跟windows command 類似,但是前者功能更為強大。

 

 

2.shell 編程準備

 

3.shell編程結構化語言構建

 

4.其他

 

5.shell編程的兩個樣本

 

 

 

Shell(BASH) 編程

相關文章

聯繫我們

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