Systems and Network Management Using Regular Expressions to Create User Accounts For each exercise where you write a program, keep the original program from each exercise and modify a copy for the next exercise. Submission of assignment: You will need to submit all your programs by email to me at nicku@vtc.edu.hk. See the subject web site for the format of the subject line of your assignments. Due: The deadline for submission is 12.30 pm on the Tuesday of the following week. Background: There are many ways of creating accounts on a Linux system; your program could select the next available user and group ids, manually edit the /etc/passwd, /etc/group and /etc/shadow files, create the user directories, copy the login scripts and other basic account files from /etc/skel, and change the ownership to the new account, but a simpler and more portable way is to use the standard useradd program that you learned about last year. We can call that from our own Perl programs using the built-in system function. Today we will write a program that will create a user account for each student listed in the artificial student registration data. Procedure: 1. Download the artificial student data from http://ictlab.tyict.vtc.edu.hk/snm/ lab/regular-expressions/artificial-student-data.txt. This file is in the old format of the student registration system, but contains no real data about any student. 2. Write a Perl program that can read all the lines of this file when it is given as a command line parameter, and print the student numbers only, one to each line. 3. Make a copy of your program, and modify it so that it prints only the names of the students, one to each line, with no extra spaces either at the beginning or end of each name. 4. Using the manual page for the useradd program as a guide, modify your previous programs so that your program prints one useradd command for each student, using the student id as the login id, the Hong Kong id as the password, and the name of the student as a comment. Note that our Linux systems require that the user/group names must start with a letter, and may not contain colons, commas, newlines or any non-printable characters. The maximum length of the user id is 32 characters; that of the group id is 16. To meet this requirement, make the user id be the first letter (made lower case) of the family name, followed by the student id. 5. Modify this last program further so that it uses the built-in Perl function system to execute the useradd command as well as print the command. Type perldoc -f system to read about this important function. Nick Urbanik ver. 1.2 Using Regular Expressions to Create User Accounts Systems and Network Management 2 6. Modify your last program so that it reports an error message if the execution of any useradd command is unsuccessful. Nick Urbanik ver. 1.2