Created
July 11, 2023 15:07
-
-
Save bpradipt/b3f3604b97cb11083f45d656176bc376 to your computer and use it in GitHub Desktop.
time Dockerfile steps
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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