summaryrefslogtreecommitdiff
path: root/benchmark
blob: b06c621a113fb46738b2d091ad1c4c87318bf298 (plain)
1
2
3
4
5
6
7
#!/usr/bin/env bash
rm -rf out
thing='start up'
{ make -j1; echo done;}|ts -i '%.s'|sed 's/ .* / /' |while read -r time newthing; do
	echo $time $thing
	thing=$newthing
done | sort -n