我有一個腳本,此行中我正在寫需要幫助省略文件夾中查找命令
find/\(-perm -4000 -o -perm -2000 \) -type f -exec file {} \; | grep -v ELF | cut -d":" -f1 >> $OUTPUT
它做的工作,但我總能得到這些消息我想省略
find: `/proc/29527/task/29527/fd/5': No such file or directory
find: `/proc/29527/task/29527/fdinfo/5': No such file or directory
find: `/proc/29527/fd/5': No such file or directory
find: `/proc/29527/fdinfo/5': No such file or directory
我怎樣才能省略/proc
目錄?
查找/ -name PROC -prune -o。 ... –
find/... \; 2>/dev/null | grep ... –