Question: 2 . Exercise 1 . Extend the version of more program. In the extended version, the program would accept an optional - o flag with
Exercise
Extend the version of more program. In the extended version, the program would accept an
optional o flag with a filename. If this flag is given as an argument to the program, then the
output, along with being printed on the window, must be written into the file given.
Example:
more longfile this command just outputs the contents of longfile on the window
more longfile o output.log this command outputs content of longfile on the
window and writes into output.log The command must be order independent, ie more
longfile o out.txt is same as moreo out.txt longfile.
You need to deploy a logic in main function to carry out order independence feature. To create
and write to a file you can consult the source codes provided. labreadFile.c lab
writeToFile.c Also use a Makefile to create the final executable. Remember to use the clean target
in the make file to remove intermediate files and the final executable so recompilation can be done
without issue.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
