unity-empty-project-template icon indicating copy to clipboard operation
unity-empty-project-template copied to clipboard

Folder rename commands

Open kkostenkov opened this issue 5 months ago • 1 comments

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

kkostenkov avatar Jul 26 '25 08:07 kkostenkov

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 🍻

vangogih avatar Oct 14 '25 22:10 vangogih