In shell we can get a simple process list with:
$ for P in $(seq 1 32168); do [ -d "/proc/$P" ] || continue echo "$P: $(cat /proc/$P/cmdline 2>/dev/null |sed 's/\x00/ /g')" done 1: init [2] 1423: -bash [...]But what if we want more information, just like ps from procps gives us?