shell程序不需要编译成目标程序,因为它是解释执行的。
对于第一行#!/bin/bash,其中#表示该行是注释,!告诉shell运行/bin/bash并让/bin/bash去执行shell程序的内容。
1)
2)
3)使用chmod命令使shell程序变为可执行的,644(rw-r--r--)
chmod u+x hello.sh
./hello.sh
时间: 2024-11-02 14:15:48
shell程序不需要编译成目标程序,因为它是解释执行的。
对于第一行#!/bin/bash,其中#表示该行是注释,!告诉shell运行/bin/bash并让/bin/bash去执行shell程序的内容。
1)
2)
3)使用chmod命令使shell程序变为可执行的,644(rw-r--r--)
chmod u+x hello.sh
./hello.sh