#!/bin/bash


    # Define the subfolders
    SUBFOLDERS=("Mach_6.82" "Mach_5" "Mach_3")

    # Loop through each sub-subfolder and execute the allclean script
    for subfolder in "${SUBFOLDERS[@]}"; do
        echo "Cleaning $subfolder ..."
        cd "$subfolder"
        # Execute the allclean script in the sub-subfolder
        ./Allclean
        cd ..
        echo "Finished cleaning $subfolder"
    done

echo "All subfolders cleaned successfully."

