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.
我需要从 cli 启动 php 并将 stdout 重定向到 /dev/null,但我正在使用 args 并且重定向不起作用。
php status.php Arg1 Arg2 > /dev/null 2>&1
如何解决?
重定向有效,调用 php 与任何其他应用程序没有什么独特之处。有时,您必须尝试使用不同类型的 pipe to null 选项,然后才能找到正确的选项。请注意,您可以包含 || 也是如此 >/dev/null 2>&1 || 真的。
$php ssh2_connect.php PHP Warning: ssh2_connect(): Unable to connect on line 12 $ $ php ssh2_connect.php > /dev/null 2>&1 $