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 | |
| set -euo pipefail | |
| # Configuration | |
| readonly DOWNLOAD_SIZE_MB=50 | |
| readonly UPLOAD_SIZE_MB=15 | |
| readonly UPLOAD_TIMEOUT=30 | |
| readonly CONNECT_TIMEOUT=10 | |
| readonly MAX_TIME=60 |