Created
June 28, 2024 12:08
-
-
Save RexYuan/2c0c83c86a06e26d15816b50067c320e to your computer and use it in GitHub Desktop.
將所有資料夾壓縮
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
for dir in ./*; do | |
if [ -d "$dir" ]; then | |
base=$(basename "$dir") | |
zip -r "../zip/$base.zip" "$dir" | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment