Answered step by step
Verified Expert Solution
Question
1 Approved Answer
NAME THE FILE: foldw.c Write a standard unix tool to break long lines in a text file, except that your tool will break long lines
NAME THE FILE: foldw.c
Write a standard unix tool to break long lines in a text file, except that your tool will break long lines at a space if possible rather than in the middle of a word. tool manner, and outputs on the standard output. numeric argument), and another command-line option -p which says to be willing to break the line after This tool takes file names on the command line or it reads the standard input, in the standard unix The default width is 80. There is a command-line option which specifies the width (-w plus a any punctuation mark even in the absence of spaces Examples For the input text I like the unix programming environment,really I do the command "foldw-w17 would produce the four lines I like the unix programming environment,reall y I do and the command "foldw -w17 -p" would produce the four lines I like the unix programming environment, really I do The -w and -p flags must work in either order and in any standard combination. Use getopt) to process the command-line options correctlv, Write a standard unix tool to break long lines in a text file, except that your tool will break long lines at a space if possible rather than in the middle of a word. tool manner, and outputs on the standard output. numeric argument), and another command-line option -p which says to be willing to break the line after This tool takes file names on the command line or it reads the standard input, in the standard unix The default width is 80. There is a command-line option which specifies the width (-w plus a any punctuation mark even in the absence of spaces Examples For the input text I like the unix programming environment,really I do the command "foldw-w17 would produce the four lines I like the unix programming environment,reall y I do and the command "foldw -w17 -p" would produce the four lines I like the unix programming environment, really I do The -w and -p flags must work in either order and in any standard combination. Use getopt) to process the command-line options correctlv
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