Skip to content

Instantly share code, notes, and snippets.

View Lslightly's full-sized avatar

Qingwei Li Lslightly

View GitHub Profile
@Lslightly
Lslightly / openEuler-fetch-rpm.sh
Created January 12, 2026 10:47
openEuler fetch rpm from mirror Packages dir
#!/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"

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example