vi my.sh 创建脚本
进入vi编辑器后按a键可进行编辑。
按“:”进入底行模式。输入wq就会保存退出。
按“/”进入底行模式。可搜索指定内容。
1 #!/bin/bash 必须要的
2 echo "please input two int num:"
3 read -p "first num :" first
4 read -p"second num:" second
5 total=$(($first+$second))
6 echo "$first+$second=$total"
结果
please input two int num:
first num :23
second num:78
23+78=101
example
1 #!/bin/bash
2 echo "please input file name:"
3 read -p "file name" filename
4 test -e $filename && echo "$fileame exist" || echo "$filename no exist"
~
~
test用来查看文件是否存在
1 &&2||3
若1正确则执行2和3
若1错误则不执行2,而执行3.