Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Task 0 2 ( 1 0 points ) Write an awk script that will accept the following input file and output data in the following
Task points
Write an awk script that will accept the following input file and output data in the following format. Check the example output carefully, we expect your output to match it EXACTLY.
tableInput file labdcsvExample outputNameFinal Grade,Course,George is taking IFTGeorgeAIFTGus is taking IFTGusCIFTSamuel is taking IFTSamuelAIFTEric is taking IFTEricAIFTSara is taking IFTSaraEIFTCatalina is taking IFTCatalinaAIFTFred is taking IFTFredDIFT Task points
Write an awk script that will accept the following input file and output the names of the students with a grade of Check the example output carefully, we expect your output to match it EXACTLY.
tableInput file labdcsvExample outputNameFinal Grade,Course,These are the students who have an A:GeorgeAIFTGeorgeGusCIFTSamuelSamuelAIFTEricEricAIFTCatalinaSaraEIFTCatalinaAIFTFredDIFT Task points
Write an awk script that will accept the following input file and output each possible final grade AE followed by a comma and then the number of students who have that exact final grade. Check the example output carefully, we expect your output to match it EXACTLY.
tableInput file labdcsvExpected output of scriptNameFinal Grade,Course,AGeorgeAIFTBGusCIFTCSamuelAIFTDEricAIFTESaraEIFTCatalinaAIFTFredDIFTTask points
Write an awk script that will take the following input file and process each record based on the keyword in the last field. You will start with and then either add or subtract the numbers from it Check the example output carefully, we expect your output to match it EXACTLY.
tableInput file labdcsvExample output ADD, SUB, ADD, ADD, ADD, SUB,Task points
Write an awk script that will accept the following input file and output the name and final grade fields. Check the example output carefully, we expect your output to match it EXACTLY.
tableInput file labdcsvExample outputNameFinal Grade,Course,Name Final GradeGeorgeAIFTGeorge AGusCIFTGus CSamuelAIFTSamuel AEricAIFTEric ASaraEIFTSara ECatalinaAIFTCatalina AFredDIFTFred D
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