A minimal cli tool to execute shell commands parallel, that allows you to easily get 100% CPU usage across all cores when running simple scripts or programs.
pqueue -c 100 "time -p ./a.out >/dev/null" 2>&1 | awk '/real/{x+=$2; c++} END{print x/c}'Where ./a.out prints the number of hash collisions and the parameters used.
pqueue "./a.out" > /tmp/tmp &
watch "sort -n /tmp/tmp | tail"sudo make clean install