Created
July 18, 2018 16:22
-
-
Save hwine/8e8f7b9b8dc96a16a8f13c4b38a06f37 to your computer and use it in GitHub Desktop.
Script to 'decode' GitHub v4 node ids
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
#!/usr/bin/env bash | |
# for informational purposes only -- there are no guarantees this format | |
# will remain as is. | |
for node_id ; do | |
echo "${node_id}" | openssl enc -d -base64 | |
echo | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment