- ./armeAbi-v7A.sh version-number
- ./arm64-v8A.sh version-number
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
#!/bin/bash | |
file="$1" | |
script_name=$(basename "$0") # Get the script name without the path | |
# Function to convert CSV to JSON | |
csvtojson() { | |
python3 -c " | |
import csv, json, sys | |
with open('$file') as f: |