Question
Fill in the blanks and correct the errors in the code please. 1) The following shell script is used to check if the input IP
Fill in the blanks and correct the errors in the code please.
1) The following shell script is used to check if the input IP address is invalid or not. Fill in the blanks labeled A,B,C,D,E,F Hint: grep returns 0 if a pattern is found. #!/bin/bash nums=$@ count = _______A._______ # Store the number of arguments from command line nums=" "$nums" " # Prints the number before sorting echo -n "Original Numbers typed:" for num in _______B._______ do echo -n "$num " done echo res="" # Now do the Sorting of numbers for n in `seq 1 $count` do min=_______C._______ # Get the first int from nums for num _______D._______ do if [_______E._______] then min=$num; fi done res="$res $min" nums=`echo "$nums"|sed _______F._______` done echo -n "Sorted Numbers:" echo $res
1) (5 points) The following program is used to display numbers between two intervals #include stdio.h #define true 1 #de fine false 0 3 5 Void prime (int low, int high) [ int i F, flag 0; printf ("Prime numbers between %d and %d are: ", low, high); 7 while (low
Step 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