See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| #!/bin/bash | |
| # 1. Define Mirror URL (Specific to 22.03 LTS aarch64) | |
| REPO_URL="https://mirrors.ustc.edu.cn/openeuler/openEuler-22.03-LTS/OS/aarch64/Packages/" | |
| # 2. Define Matching Pattern (e.g., packages starting with "python3-") | |
| PATTERN="python3-[^\"]*?\\.rpm" | |
| # 3. Create Download Directory | |
| DOWNLOAD_DIR="./python3-rpms" |