-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
20 lines (16 loc) · 856 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#Text substitutions. "DeveloperName", "YEAR", and "Project" appears in many places, specifically the copyright declarations and gsch2pcb directive.
find . -maxdepth 1 -type f -exec sed -i s/Project/newProjectName/g {} \;
find . -maxdepth 1 -type f -exec sed -i s/DeveloperName/newDeveloperName/g {} \;
find . -maxdepth 1 -type f -exec sed -i s/YEAR/currentYEAR/g {} \;
#Rename project files.
mv ./Project ./newProjectName
mv ./Project.sch ./newProjectName.sch
#Remove CC0 license.
rm ./license.html
rm ./license.txt
mv ./license.txt.gpl ./license.txt
rm ./CC0_license.txt
#Replace this file with a usable readme template.
mv ./README.template ./README
_Copyright_
All content in this folder not owned by other authors is intended to be public domain. Other copyright notices may be provided as templates. See license.txt for details.