IT 441: Network Services Administration
Class #05 Exercise

Complete by: 2/22/2018


Log in to users.cs.umb.edu

Begin a script session

        script

Do a long listing of your ex05 directory -- to confirm your .pl files are all executable

        ls -l

Show and run positive_negative_zero.pl

$ cat ./positive_negative_zero.pl

$ ./positive_negative_zero.pl
(Run the script a few times with different inputs, to confirm correct behavior.)

Show and run verify_even.pl

$ cat ./verify_even.pl

$ ./verify_even.pl
(Run the script a few times with different inputs, to confirm correct behavior.)

Show and run simple_quadratic.pl

$ cat ./simple_quadratic.pl

$ ./simple_quadratic.pl
(Run the script a few times with different inputs, to confirm which coefficient combinations do and do not work.)

Show and run smart_quadratic.pl

$ cat ./smart_quadratic.pl

$ ./smart_quadratic.pl
(Run the script at least six times, using each of six different possible coefficient combinations, using numbers other than those I provided in the table above... ...to confirm correct behavior.)

End the script session

Use the exit command. You should then have a file called typescript in your current working directory.