bat和sh有什么区别呢
[root@localhost home]# ll
总用量 4
-rw-r--r--. 1 root root 36 9月 13 16:27 hello.bat
[root@localhost home]# ./ hello.bat
-bash: ./: is a directory
[root@localhost home]# ./hello.bat
-bash: ./hello.bat: 权限不够
[root@localhost home]# .hello.bat
-bash: .hello.bat: command not found
[root@localhost home]# . hello.bat
hello world!!
我想问问 ./hello.bat 是什么意思为什么说是权限不足。
.hello.bat 为什么会提示没有找到命令呢。