From 7d222d9193550c9de12daf4fa05f4251f300793a Mon Sep 17 00:00:00 2001 From: oech3 <79379754+oech3@users.noreply.github.com> Date: Sun, 8 Feb 2026 02:59:38 +0900 Subject: [PATCH] nice -n . 2>/dev/full does not abort --- src/uucore_procs/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uucore_procs/src/lib.rs b/src/uucore_procs/src/lib.rs index c73f542a98b..79a145f9428 100644 --- a/src/uucore_procs/src/lib.rs +++ b/src/uucore_procs/src/lib.rs @@ -56,7 +56,7 @@ pub fn main(_args: TokenStream, stream: TokenStream) -> TokenStream { uucore::show_error!("{s}"); } if e.usage() { - eprintln!("Try '{} --help' for more information.", uucore::execution_phrase()); + let _ = writeln!(std::io::stderr(),"Try '{} --help' for more information.", uucore::execution_phrase()); } e.code() }