[Solved]Task 2 50 Points Default Tee Overwrites Existing File Given Name Implement Command Line Op Q37213163
“Please write this program in c and it should work in linux”

Thank You..
Task 2 (50 points) By default, tee overwrites any existing file with the given name. Implement the -a command-line option (tee -a file), which causes tee to append text to the end of a file if it already exists. You can read about getopt man page: man 3 getopt. function in Appendix B of The Linux Programming Interface” and in its Example session (note that position of the option -a does not matter): $echo TestText1I./tee file TestText1 $cat file TestText1 S echo TestText2 ./tee-a file Show transcribed image text Task 2 (50 points) By default, tee overwrites any existing file with the given name. Implement the -a command-line option (tee -a file), which causes tee to append text to the end of a file if it already exists. You can read about getopt man page: man 3 getopt. function in Appendix B of The Linux Programming Interface” and in its Example session (note that position of the option -a does not matter): $echo TestText1I./tee file TestText1 $cat file TestText1 S echo TestText2 ./tee-a file
Expert Answer
Answer to Task 2 (50 points) By default, tee overwrites any existing file with the given name. Implement the -a command-line optio… . . .
OR

