Count open fds of a PID lsof

Quick fd count to spot leaks vs ulimit -n; faster: ls /proc/<pid>/fd | wc -l

lsof -nP -p <pid> | wc -l