[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 为什么会提示没有找到命令呢。
最好的清浮动方法就是.clearfix,只要子元素浮动了,想着就给父级清掉就完事了仔细看一下可能是哪个小地方疏忽了,js随便少个什么都可能会出问题,所以耐心点,多用alert或者console.log调试,不要只是用眼睛去看代码找错误。
./hello.bat 是什么意思为什么说是权限不足
--------------------------
没有执行权限,需要使用 chmod 命令 。
.hello.bat 为什么会提示没有找到命令呢。
--------------------------------------
作为系统来说,确实没有找.hello.bat 这个文件。 因为文件名前面有个.(点)