Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下两个命令有什么区别吗?
ls -l some_non_existing_file 2>/dev/null
和
ls -l some_non_existing_file 2>&-
两者似乎都有效,但到目前为止我只看到第一个被实际使用。
在第二种情况下,程序尝试将数据输出到 stderr 将失败EBADF。该程序是否关心是一个单独的问题。
EBADF