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