Skip to content

Instantly share code, notes, and snippets.

@empjustine
Last active January 14, 2025 00:23
Show Gist options
  • Save empjustine/651ae2bb740b420f947b491e1cabe101 to your computer and use it in GitHub Desktop.
Save empjustine/651ae2bb740b420f947b491e1cabe101 to your computer and use it in GitHub Desktop.
#!/bin/sh
# strftime strptime format
# 2024-W52-3
current_iso_week_date="$(date +'%G-W%V-%u')"
# 2024-12-25T18:59:50-03:00
current_iso_8601_date="$(date +'%Y-%m-%dT%H:%M:%S%:z')"
# 2024-12-25T22:00:41Z
current_iso_8601_date_z="$(date -u +'%Y-%m-%dT%H:%M:%SZ')"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment