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, 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
Heres a stepbystep guide to solve the problem using the specified commands 1 Create the CSV File Ope... View full answer
Get step-by-step solutions from verified subject matter experts
