Created
April 18, 2021 10:58
-
-
Save rawiriblundell/24404b3e715ccf1cbe157513749edada 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
# A shell conversion of | |
# https://gist.github.com/caseydunham/508e2994e1195e4cb8e4 | |
convert_ldaptime_to_unixepoch() { | |
local ldap_offset ldap_timestamp | |
ldap_timestamp="${1:?No ldap timestamp supplied}" | |
ldap_timestamp=$(( ldap_timestamp / 10000000 )) | |
# Calculated as '( (1970-1601) * 365 -3 + ((1970-1601)/4) ) * 86400' | |
ldap_offset=11644473600 | |
printf -- '%s\n' "$(( ldap_timestamp - ldap_offset ))" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment