Shell_01
Shell_01
1.第一个Shell脚本
1 | $ vim helloworld.sh |
运行脚本的三种方式
1 | $ source helloworld.sh |
2.Shell变量
实例1——字符串:
1 | #字符串变量 |
实例2——数组
1 | $ array=(1 2 3 4) |
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
1 | $ vim helloworld.sh |
运行脚本的三种方式
1 | $ source helloworld.sh |
实例1——字符串:
1 | #字符串变量 |
实例2——数组
1 | $ array=(1 2 3 4) |