This file contains hidden or 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 | |
| # | |
| # csv_to_pki_json.sh | |
| # | |
| # Pure POSIX shell + awk implementation (NO python, NO jq, NO extra | |
| # installs) - works in plain Git Bash / MINGW / any minimal shell that | |
| # ships awk, sed, grep (i.e. basically everywhere). | |
| # | |
| # IMPORTANT: True .xlsx files are zip archives containing XML - a shell | |
| # without unzip/python literally cannot decode that binary format. So |