NIT1202 Operating Systems UNIX Script Assignment 2 For this assignment, you may work with one partner, if desired. Tasks: You are required to write a Bourne Again Shell Script (bash) to manage a menu...

1 answer below »
How much will it cost me?


NIT1202 Operating Systems UNIX Script Assignment 2 For this assignment, you may work with one partner, if desired. Tasks: You are required to write a Bourne Again Shell Script (bash) to manage a menu driven program. When executed the user should be presented with a menu with 4 (four) options: 1. Print the following user information: the home directory, path, userid , login shell together with the current date and time. 2. Ask a user a range and it displays eight random number between the range. [Range difference must be 100. Example Enter a range: 200 300 3. Print out the highest and the lowest numbers of the generated eight random numbers 4. Exit the program Requirements: Your script must allow one of these options to be chosen at a time. The menu must be presented over and over again, until the fourth option (exit) is chosen. An appropriate error message must be displayed if an invalid option is chosen. Option one, your script should list the specified environment variables. The current output of the date command, together with the userid and the full name of the user also needs to appear in this file, before the environment variables. Option two should prompt the user a range and displays eight (8) random numbers. Option three should list the highest and lowest number of the generated random numbers. Option four should cause a graceful exit from the menu and the whole program. To Be Handed in: · A copy of your working bash shell script needs to be handed in to your tutor and uploaded in VU Collaborate Assignment Dropbox. · Make sure your script includes your name and ID. · Make sure the code is well commented. · Documentation including: · A neatly formatted print-out of your bash shell script · Appropriate and specific acknowledgments of aid you received from people, books, journals, etc. for this assignment. Remember to make your script user-friendly and easy to read! Criteria: · the degree to which the problem has been correctly solved · the structure and clarity of the solution · the quality of the accompanying documentation Date Due: Friday Week 12 5 PM You are required to demonstrate in Week 11 during your lab time. If you do not demonstrate, you get a 0 mark. Late submission of assignment will NOT be accepted. You are strongly advised to plan to hand-in your assignment early to make allowance for any last minute hitches. The accompanying documentation for the assignment must be word-processed. Weight: This task is worth 25% of the assessment for the unit. UNIX Shell Script Assignment 2 Marking Scheme Name: __________________________Tutor:______________________________ Programming: 4 options in the main menu Menu: Repeats until option 5 is chosen Traps invalid menu choices Option 2 prompts for user input User-friendly prompts, error messages and output /2 /2 /2 /2 /2 /10 Functions: Option One Prints: Home directory Path User ID Login shell Current Date/Time Option Two: User Input Display random numbers between the range Option Three: The highest number The lowest number Option Four: Smooth exit Data validation /1 /1 /1 /1 /1 /5 /25 /10 /10 /5 /10 /5 /30 /20 /5 /10 Documentation: Well commented and structured code Formatted print out of final script Overall presentation of report (including description, print out of code supplied, test data and referencing) /10 /5 /5 /20 Total: NOTE: Your final mark will be converted to 25 /100 /25 Additional Comments (if any): Page 1 of 3 Assignment 2 Page 3 of 3
Answered Same DayOct 09, 2021NIT 1202

Answer To: NIT1202 Operating Systems UNIX Script Assignment 2 For this assignment, you may work with one...

Ritu answered on Oct 13 2021
135 Votes
#/bin/bash
while :
do
clear
echo "Welcome to main menu"
echo "1 -- Print the user information"

echo "2 -- Ask a user a range and it displays eight random number between the range"
echo "3 -- Print out the highest and the lowest numbers of the generated eight random numbers "
echo "4 -- Quit"
echo -n "Make your selection: "
read opt
case $opt in
1) echo ":::Display user information:::"
   echo "home directory is:" $HOME
   echo...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here