shell脚本后缀为.sh
+++++++++++++++++++++++
1)指定bash
首行,必须写下
#! /bin/bash
+++++++++++++++++++++++
2) 修改可执行权限
chmod 777 xxx.sh
+++++++++++++++++++++++
3)常用命令
echo "hello world"
打印字符串
read xxxstr
读取用户输入的字符串,回车结束,并将字符串赋值给变量xxxstr。
echo "please input your name :"
read name
echo "your name is : " $name
以上例子为基本的交互式输入输出。
注意,echo的参数,如果是多个字符串,则命令会自己串联多个字符串来打印。
变量引用,使用$符号,与makefile不同的是,shell是不需要括号将变量包含起来的。
read -p "input your age and height:" age height
echo "your age is $age, your height is $height "
read 可以输出提示字符串,由-p参数指定。
read一次读取多个字符串,分别赋值给变量,回车结束,多个字符串的分隔,用空格分隔。
echo中,使用了变量引用,脚本解析阶段,会进行文本替换。
read -p "input first num:" firstnum
read -p "input second num:" secondnum
total = $(($firstnum + $secondnum))
echo "total is : $total"
美元符配合双层括号,表示数值计算,首先将括号内的数字字符串,转换成int的数值,然后计算出的数值结果,再转换成数字字符串,赋值给字符串变量。
数值计算,支持加减乘除等。