education.conf -- bash
$ cat /etc/education.conf
[MASTERS]
degree = "M.S. Computer Science"
institution = "George Mason University"
year = 2021
gpa = 4.0/4.0
honors = ["Distinguished Academic Award", "$8K Research Grant"]
role = "Graduate Research Assistant"
[BACHELORS]
degree = "B.Tech Computer Science"
institution = "GITAM University"
year = 2018
gpa = 3.34/4.0
$ echo "Total years of education: 6"
Total years of education: 6
$