OtoroLin's picture
Add testing data data.tar.gz
b3d8a4b
raw
history blame
296 Bytes
#!/bin/bash
# Define the folder to zip and the output zip file
FOLDER_TO_ZIP="../data_testing"
OUTPUT_TAR="./data.tar.gz"
# Create the zip file
echo "Zipping folder: $FOLDER_TO_ZIP"
tar -czvf "$OUTPUT_TAR" "$FOLDER_TO_ZIP"
# Confirm completion
echo "Folder zipped successfully to: $OUTPUT_TAR"