forked from feelpp/feelpp-tutorial-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rename.sh
116 lines (96 loc) · 3.57 KB
/
rename.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#! /bin/bash
# This script is used to rename the project from myproject to something else.
create_name(){
string=$1
# Use parameter expansion to get the second part of the string
second_part="${string#*/}"
echo "$second_part"
}
create_short_name() {
name=$1
# Convert the name to lowercase and remove spaces
short_name=$(echo "$name" | tr '[:upper:]' '[:lower:]' | sed 's/ //g')
# Get the first word
first_word=$(echo "${short_name%%-*}")
#echo "First word: $first_word"
# Get the other words and their first letters
other_words=$(echo "${short_name}" | tr '-' '\n' | cut -c1 | tr -d '\n')
#echo "Other words: $other_words"
# Combine the first word and other letters to create a shorter name
#shorter_name="${first_word}-${other_words}"
shorter_name="${other_words}"
# Print the shorter name
echo "$shorter_name"
}
create_title() {
name=$1
# Convert the name to lowercase and remove spaces
short_name=$(echo "$name" | tr '[:upper:]' '[:lower:]' | sed 's/ //g')
# Replace hyphens with spaces
short_name=${short_name//-/ }
# Use parameter expansion to uppercase the first letter of each word
uppercase_name=$(echo "$short_name" | awk '{for(i=1;i<=NF;i++)sub(/./,toupper(substr($i,1,1)),$i)}1')
# Print the shorter name
echo "$uppercase_name"
}
# This script is used to rename the project from myproject to something else.
if [ -z "$1" ]; then
echo "Usage: $0 <projectname> <projecttitle> <shortprojectname> <appname>"
exit 1
elif [ "$1" == "-h" -o "$1" == "--help" ]; then
echo "Usage: $0 <projectname> <projecttitle> <shortprojectname> <appname>"
exit 1
elif [ "$1" == "-r" ]; then
in_default_projectname="project"
read -p "What is the name of the project ? [$in_default_projectname]: " projectname
projectname=${projectname:-$in_default_projectname}
in_default_titlename="$projectname"
read -p "What is the title of the project? [$in_default_titlename]" projecttitle
projecttitle=${projecttitle:-$in_default_titlename}
in_default_shortname="p"
read -p "What is the short name of the project? []" shortprojectname
shortprojectname=${shortprojectname:-$in_default_shortname}
in_default_appname="myapp"
read -p "What is the name of the first application? [$in_default_appname]" appname
appname=${appname:-$in_default_appname}
else
projectname=$( create_name $1 )
projecttitle=$(create_title ${projectname})
shortprojectname=$( create_short_name $projectname )
appname="app"
fi
echo " project name: $projectname"
echo " project title: $projecttitle"
echo "project shortname: $shortprojectname"
echo " app name: $appname"
if [ "$1" == "-r" ]; then
PS3="Do you wish to rename this project?"
select yn in Yes No
do
case $yn in
Yes ) echo "Ok lets go!"; break;;
No ) exit;;
esac
done
fi
export projectname
export projecttitle
export shortprojectname
export appname
files=( "README.adoc" "CMakeLists.txt" "src/CMakeLists.txt"
"src/.tests.laplacian"
"src/.tests.toolbox"
"site.yml"
"docs/antora.yml"
"package.json"
"package-lock.json"
"docs/modules/ROOT/pages/index.adoc"
".github/workflows/ci.yml" )
for i in "${files[@]}"
do
echo "processing renaming in $i ...."
perl -077pi.bak -e 's/feelpp-project/$ENV{'projectname'}/sg' $i
perl -077pi.bak -e 's/Feel\+\+ Project/$ENV{'projecttitle'}/sg' $i
perl -077pi.bak -e 's/\"fp\"/"$ENV{'shortprojectname'}"/sg' $i
perl -077pi.bak -e 's/myapp/$ENV{'appname'}/sg' $i
done