I want to run a command to delete backups so that I can reduce disk usage. Not sure how, but *
represents all the directories under the sites
directory
sudo rm -r sites/*/private/backups/*
My directory structure would be as given below:
ls sites
sites/hello/private/backups/
sites/world/private/backups/
sites/hello_world.txt
This is not working