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.
我一直在寻找有关静默杀死命令的解决方案,并且通过以下命令在论坛中成功找到了解决方案:
kill -9 "process_name" &> /dev/null
但是,我的问题是:
“ &> /dev/null ”是什么意思?
任何提示和建议将不胜感激!
谢谢
&>/dev/null将来自 STDOUT和STDERR 的所有输出重定向到 bitbucket /dev/null。任何输出都可以重定向到 /dev/null 并被静默丢弃。
&>/dev/null