Skip to content

Instantly share code, notes, and snippets.

View kymair's full-sized avatar

Karl Popper kymair

View GitHub Profile
#!/bin/bash
CONCURRENCY=8
TIME_START=`date`
for ((idx = 0; idx < $CONCURRENCY; idx++))
do
time echo "scale=5000; a(1)*4" | bc -l > /dev/null &
done
echo "$TIME_START Start"