Skip to content

Instantly share code, notes, and snippets.

@3clypse
Last active June 1, 2017 14:42
Show Gist options
  • Save 3clypse/e5f317e0dcc2e8f4dd3fca8700415ca0 to your computer and use it in GitHub Desktop.
Save 3clypse/e5f317e0dcc2e8f4dd3fca8700415ca0 to your computer and use it in GitHub Desktop.
HH:MM:SS to minutes
echo "01:02:03" | awk -F: '{ print ($1 * 60) + $2 + ($3 / 60)}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment