Skip to content

Instantly share code, notes, and snippets.

@RexYuan
Created June 28, 2024 12:08
Show Gist options
  • Save RexYuan/2c0c83c86a06e26d15816b50067c320e to your computer and use it in GitHub Desktop.
Save RexYuan/2c0c83c86a06e26d15816b50067c320e to your computer and use it in GitHub Desktop.
將所有資料夾壓縮
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