====== Bash utils ======
==== Time to file ====
[[https://stackoverflow.com/questions/13356628/how-to-redirect-the-output-of-the-time-command-to-a-file-in-linux|source]]
{ time sleep 1 ; } 2> time.txt
or
{ time sleep 1 2> sleep.stderr ; } 2> time.txt