Question
Write a C program mycat whose behavior resembles that of the system command cat. Unlike the standard cat, mycat will not work with the standard
Write a C program mycat whose behavior resembles that of the system command cat. Unlike the standard cat, mycat will not work with the standard input. mycat must accept the following parameters: $ mycat [-b] file1 [file2 ...]
mycat must receive at least one parameter, file1, whose content will be printed on the screen. If more than one file name is specified, the contents of all of the files will be printed. mycat must accept any combination of the following switches:
-b Number the non-blank output lines, starting at 1.
$ mycat -b file1.txt file2.txt
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