標籤:
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) 編程