# #!/bin/bash # git clone https://github.com/davanstrien/awesome-synthetic-datasets # # Check if /data directory is accessible # if [ -d "/data" ]; then # echo "/data directory is available." # # Copying notebooks to /data directory # # Ensure that the source path is correctly specified where your Jupyter notebooks are located # cp -r awesome-synthetic-datasets/* /data/ # # Alternatively, if you want to move the notebooks uncomment the following line and comment out the cp line above # # mv /path/to/notebooks/* /data/ # echo "Notebooks have been successfully copied to /data." # else # echo "Error: /data directory does not exist." # fi