Shell(BASH) 编程
SHELL PROGRAMMING
目录:
写在前面:
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 handling then echo "Usage - $0 x y" # display help message echo " Where x and y are two nos for which I will print sum" exit 1 fi echo "Sum of $1 and $2 is `expr $1 + $2`"
正文:
我们都知道,计算机识别的是二进制语言,计算机指令也是用二进制来表示的,但这对我们来说却相当困难。所以在一些操作系统中就有一个特殊程序叫做shell, shell接受你输入的指令,并且如果它是正确的话,就会将该指令传递到内核。
shell是一个用户程序或者说是一种由计算机与用户交互的环境。shell是一种解释型语言,可以执行来自标准输入设备(键盘)或者是文件的命令。 Linux shell跟windows command 类似,但是前者功能更为强大。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。