执行文件
可执行文件可以直接被执行,其他执行文件如动态库,内核模块,脚本程序都需要特定命令来执行。所有类型的执行文件都要先设置可执行权限才可被执行。
[root@sylixos:/root]# ll /apps/helloworld/
-rwxr-xr-x root root Thu Jun 29 15:16:34 2023 1660 B, helloworld
total items: 1
[root@sylixos:/root]# /apps/helloworld/helloworld
Hello SylixOS!
[root@sylixos:/root]# ll
-rw-rw-rw- root root Thu Jun 29 15:19:18 2023 19 B, helloworld.sh
lrwxrwxrwx root root Thu Jun 29 15:04:58 2023 test-ln -> test
-rw-rw-rw- root root Mon May 29 20:44:24 2023 4805 B, test2
-rw-rw-rw- root root Mon May 29 19:22:19 2023 130KB, test
total items: 4
[root@sylixos:/root]# shfile helloworld.sh
hello world!
[root@sylixos:/root]#