I need to create a Bash script to go into every user's home folder, seek out a wp-content folder, create a directory uploads under it, and then chmod 0756 uploads.
How do I achieve this?
I imagine I need to use find with a regexp/regex, and then tell it to run another bash script on the results.