运行脚本语言
- 给shell脚本赋权:
chmod +x shell.sh
- 三种运行方式
- bash shell.sh
- shell.sh
- ./shell.sh
- source shell.sh
打印
- echo
#! /bin/bash -v
# shell.sh
echo "Hello,World"
#!
是使用指定的解释器-bash -v
会打印源码
数值运算
整数运算
-
整数运算
i=0 ((i++)) echo $i
chmod +x shell.sh
#! /bin/bash -v
# shell.sh
echo "Hello,World"
#!
是使用指定的解释器-bash -v
会打印源码
整数运算
i=0
((i++))
echo $i
本文标题:Shell
本文链接:https://www.haomeiwen.com/subject/zfuelftx.html
网友评论