Datasets:
| # 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" |