Skip to content

Instantly share code, notes, and snippets.

@thejhh
Created November 14, 2021 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thejhh/057be2d186a46b151868ecf24c2bd18f to your computer and use it in GitHub Desktop.
Save thejhh/057be2d186a46b151868ecf24c2bd18f to your computer and use it in GitHub Desktop.
bin/fix-log-timestamp.sh
#!/bin/bash
while read LINE; do
TIME="$(echo "$LINE"|awk '{print $1}')"
FIXED_TIME="$(date -d "$TIME" '+[%d/%b/%Y:%H:%M:%S %z]')"
echo -n "$FIXED_TIME "
echo "$LINE"|sed -re 's/^[^ ]+ //'
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment