Last active
January 14, 2025 00:23
-
-
Save empjustine/651ae2bb740b420f947b491e1cabe101 to your computer and use it in GitHub Desktop.
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/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