I'm trying to rename all my folders and its files so that the first letter is a capital.
I've got this script which does that for the current directory:
rename -f 's/./\U$&/' *
This is working great. How can I run this command in every subfolder (**/*
)?