Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
Write a bash script that reads from a CSV file for student information (exported from Excel). The file is made up of the lines like this:Jack,Zheng,jzheng3 //[first name],[last name],[campus email id]
Write a bash script that reads from a CSV file for student information (exported from Excel). The file is made up of the lines like this:
Jack,Zheng,jzheng3 //[first name],[last name],[campus email id]
Mark,Cuban,mcuban2
...
Please make up your own CSV file (with at least 5 students/lines) for testing purpose.
Every student is assigned a common initial password (you will determine the password).
Students are required to change their passwords at first login.
All student accounts should be assigned to a "student" group. This group already exists in the
system (you need to create the group first for testing purpose).
Make some other assumptions if not specifically required.
Reminder: you will and should do some research on how to read and parse CSV files, and how to
process passwords programmatically.