檢查 /proc/<x>/fd/ 目錄的檔案數量可以用來查看對應 Process 開檔數量
透過 find 指令查詢全部 Process 開檔狀況
find /proc/*/fd -maxdepth 0 -print0 | xargs -0 -I{} sh -c 'printf "%4d : %s\n" "$(ls {}| wc -l)" "{}"'