Question
Write a Perl script that accepts exactly 2 integer arguments where the first argument must be less than the second argument. The script will print
Write a Perl script that accepts exactly 2 integer arguments where the first argument must be less than the second argument. The script will print a comma separated list of integers starting with the first argument up through the second argument.
The last printed value should be the second command line argument not be followed by a comma.
The script should also be able to handle the following errorsituations:
o incorrect number of arguments
o the first argument is not less than the second argument (dont worry about trying to handle non-integer arguments)
The script file name must be: intlist.pl
The script must be located in $HOME/itec400/homework
Make sure the permissions on the your itec400 directory are 705
Make sure the permissions on your script are 705
***Please use the template below - replace X***
Sample Output Sunny Day Scenarios >intlist.pl 3 13 3,4,5,6,7,8,9,10,11,12,13 >intlist.pl -37 -3,-2,-1,0,1,2,3,4,5,6,7 Rainy Day Scenarios: >intlist.pl 4 error: incorrect number of arguments usage: intlist.pl a b (where aintlist.pl 13 3 The first argument must be less than the second argument usage: intlist.pl a b (where aStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started