bat和sh有什么區(qū)別呢
[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 為什么會提示沒有找到命令呢。
2022-03-25
最好的清浮動方法就是.clearfix,只要子元素浮動了,想著就給父級清掉就完事了仔細看一下可能是哪個小地方疏忽了,js隨便少個什么都可能會出問題,所以耐心點,多用alert或者console.log調(diào)試,不要只是用眼睛去看代碼找錯誤。
2016-09-14
./hello.bat 是什么意思為什么說是權限不足
--------------------------
沒有執(zhí)行權限,需要使用 chmod 命令 。
.hello.bat 為什么會提示沒有找到命令呢。
--------------------------------------
作為系統(tǒng)來說,確實沒有找.hello.bat 這個文件。 ?因為文件名前面有個.(點)