camlboot/timed.sh
2021-02-17 15:15:16 +01:00

7 lines
131 B
Bash
Executable File

#!/usr/bin/env bash
r=$(dirname $0)
echo >> "$r/timings"
echo "$@" >> "$r/timings"
{ time { "$@" 2>&3; }; } 3>&2 2>> "$r/timings"