14 lines
260 B
Bash
14 lines
260 B
Bash
|
!/bin/bash
|
||
|
|
||
|
# Change to the primary directory
|
||
|
cd ./build
|
||
|
|
||
|
# Iterate over subdirectories
|
||
|
for subdir in */; do
|
||
|
# Extract the subdirectory name
|
||
|
dirname=$(basename "$subdir")
|
||
|
|
||
|
# Zip the subdirectory into a unique .zip file
|
||
|
zip -r "$dirname.zip" "$subdir"
|
||
|
done
|