Created
May 15, 2019 15:19
-
-
Save danstreeter/980913674016242c20e649ab0047aea1 to your computer and use it in GitHub Desktop.
Find MySQL Table Versions from raw versions
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
for file in *.frm; do echo $file" : "$(hexdump -s 0x33 -n 2 -v -d *.frm | head -1 | rev | awk '{$1=$1};1' | cut -d" " -f1 | rev); done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment