课程基于B站于超课程笔记 03 Shebang的正确玩法_哔哩哔哩_bilibili
P1 shell的作用
P2 shell执行命令的流程
P3 Shebang的正确玩法
什么是shell及组成
shell概念
shelll组成
Shebang概念
/bin/sh /bin/bash一样,都是指向一个bash解释器
[root@localhost ~]# ls -l /bin/sh lrwxrwxrwx. 1 root root 4 2月 14 16:22 /bin/sh -> bash [root@localhost ~]# ls -l /bin/bash -rwxr-xr-x. 1 root root 964536 4月 1 2020 /bin/bash
运行shell脚本的方式
1.绝对路径或相对路径执行脚本。chmod +x hello.sh 然后 ./hello.sh
2指定解释器。./usr/bin/bash ./hello.sh 或bash ./hello.sh bash可以替换成sh
3.source ./hello.sh