Folder rename commands
Thank you for the template, I've already used it in a couple of personal projects.
You could consider adding the following commands to the documentation to quickly rename UEPT and CompanyName.
To be run from the root of the repo:
find . -depth -name "*UEPT*" | while read -r file; do mv "$file" "$(dirname "$file")/$(basename "$file" | sed 's/UEPT/NewProjectName/g')"; done
find . -depth -name "*CompanyName*" | while read -r file; do mv "$file" "$(dirname "$file")/$(basename "$file" | sed 's/CompanyName/TherCompanyName/g')"; done
Hey man!
Thank you so much for using the template and your feedback. It means a lot to me!
Don't hesitate to create PR with that perfect addition to the template 👍🏻
I can just see some typos in lines you have sent. It would be nice if you test it and provide robust ready to use solution 💪🏻
I believe in you and looking forward to reviewing your PR 🍻