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 | |
# zip_benchmark.sh — v2025‑05‑06 (quiet‑safe) | |
# | |
# Same purpose as previous version but now detects whether `zipcloak` | |
# supports `-q` (quiet). On macOSʼs default Info‑ZIP 3.0 the flag does | |
# **not** exist, so we omit it to avoid exit‑16 errors. | |
# | |
# ‣ Speed ranking | |
# ‣ Size ranking | |
# ‣ Efficiency (MiB × s) |
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
export type Country = | |
| "United States" | |
| "Germany" | |
| "United Kingdom" | |
| "India" | |
| "France" | |
| "Italy" | |
| "Australia" | |
| "Russian Federation" | |
| "Afghanistan" |