Skip to content

Instantly share code, notes, and snippets.

@rawiriblundell
Created April 18, 2021 10:58
Show Gist options
  • Save rawiriblundell/24404b3e715ccf1cbe157513749edada to your computer and use it in GitHub Desktop.
Save rawiriblundell/24404b3e715ccf1cbe157513749edada to your computer and use it in GitHub Desktop.
# 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