How to suppress "terminated by signal 13"?
Peng Yu <[email protected]>
| Newsgroups | gmane.comp.gnu.findutils.bugs |
|---|---|
| Message-ID | <CABrM6w=R0TP5sHbnZG-vy_ZZTJKBV=87Rt_Ei4tezyYVVNLRJQ@mail.gmail.com> |
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