Question: The following Bourne shell script and C program can accomplish the same task: read an IP address from user's input and check if the input
The following Bourne shell script and C program can accomplish the same task: read an IP address from user's input and check if the input IP address is valid or not.
Fill in the Blanks!
Shell script
#!/bin/bash echo -n "Please enter the ip:" _______A._______ echo $ip|grep _______B.______________ if [_______C._______] then echo "Please enter IP address following the IP address pattern" exit fi
C programm #include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
