Question: Problem statement: Write a few bash commands using only cut, sort, head and >> to find the largest integer in a CSV file. You aren't

 Problem statement: Write a few bash commands using only cut, sort,

Problem statement: Write a few bash commands using only cut, sort, head and >> to find the largest integer in a CSV file. You aren't allowed to use any other tools. Hints: 1. Create a CSV file using vim. It should contain 6 rows, with 6 integers in each row, for a total of 36 distinct integers. Do not put spaces before or after the commas. Sample Row: 1,2,3,4,5,6 2. Use cut, sort, head to go over the file, column by column, finding the max in each column. 3. Every time you find a max, use >> to append it to a file. 4. Then use sort and head to find the largest in that file. 5. DONE! Submit: A.txt file containing all the commands you ran. A screenshot of your terminal showing that your commands did indeed find the max. In your screenshot, be sure to also run curl ipinfo.io/ip A screenshot of your digitalocean account showing the ip address returned by curl

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Heres a stepbystep guide to solve the problem using the specified commands 1 Create the CSV File Ope... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!