bug-findutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

How to suppress "terminated by signal 13"?


From: Peng Yu
Subject: How to suppress "terminated by signal 13"?
Date: Thu, 14 Jan 2021 19:47:38 -0600

Hi,

I want to suppress the message "xargs: ls: terminated by signal 13".

$ find . -type f | xargs ls -altr | head
...
xargs: ls: terminated by signal 13

I could use this. But I don't want to miss other error messages. Is
there an option of xargs to just suppress this message? Thanks.

$ find . -type f | xargs ls -altr 2>/dev/null | head

-- 
Regards,
Peng



reply via email to

[Prev in Thread] Current Thread [Next in Thread]