2
爲了試圖擺脫我的錯誤,我得到這個錯誤。 /dev/null/: Is a directory
Linux:/ dev/null /:是一個目錄
這是什麼意思?我怎麼能做到這一點,我可以扔掉我的錯誤,如下所示:echo "hello" 2>/dev/null/
?
爲了試圖擺脫我的錯誤,我得到這個錯誤。 /dev/null/: Is a directory
Linux:/ dev/null /:是一個目錄
這是什麼意思?我怎麼能做到這一點,我可以扔掉我的錯誤,如下所示:echo "hello" 2>/dev/null/
?
擺脫尾部的斜線。
echo "hello" 2>/dev/null
如果/ dev/null是一個目錄,在你的Linux系統中出現問題,你需要恢復它。您使用以下的bash命令做得一樣根:
mknod /dev/null c 1 2
chmod 666 /dev/null
已經刪除null
目錄,