Skip to content

Instantly share code, notes, and snippets.

@bpradipt
Created July 11, 2023 15:07
Show Gist options
  • Save bpradipt/b3f3604b97cb11083f45d656176bc376 to your computer and use it in GitHub Desktop.
Save bpradipt/b3f3604b97cb11083f45d656176bc376 to your computer and use it in GitHub Desktop.
time Dockerfile steps
#!/bin/bash
function timestamp() {
while IFS= read -r 'LINE' ; do
printf "%s %s\n" "$(TZ=GMT-0 date '+%Y-%m-%dT%T.%N' | cut -c1-26)" "$LINE" 1>&2
done
}
"$@" 2>&1 | timestamp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment