forked from htw-imi-showtime/showtime-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
new_semester.sh
executable file
·33 lines (23 loc) · 1.09 KB
/
new_semester.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
#!/bin/sh
set -e
if [ "$#" -ne 2 ]; then
echo "Usage: ./new_semester.sh <semester> <archive-semester>"
echo "Replace <semester> with a semester abbreviation, e.g. 'ws21' for 'winter semester 2021'"
echo "e.g. ./new_semester.sh ws23 ss22"
exit 1
fi
# next semester
# Check if semester is valid
(echo "$1" | grep -Eq "^(ws|ss)[0-9]{2}$") || (echo "Error: Invalid semester passed" && exit 2)
# Update the semester set in the config file
sed -e "s/current_semester = [ws]s[0-9]\{2\}/current_semester = $1/" -i "" config/_default/config.toml
# archive semester
# Check if archive semester is valid
(echo "$2" | grep -Eq "^(ws|ss)[0-9]{2}$") || (echo "Error: Invalid semester passed" && exit 2)
# Update the semester set in the config file
sed -e "s/archive_path = [ws]s[0-9]\{2\}/archive_path = $1/" -i "" config/_default/config.toml
# sed -e "s/ws[0-9]\{2\}/$2/;s/ss[0-9]\{2\}/$2/" -i "" config/_default/config.toml
# emtpy the schedule
printf "[[slot]]\\ntitle = \"The schedule will be published soon.\"" > data/schedule.toml
# Create a new project folder for this semester
hugo new --kind semester $1