- Lab
- A Cloud Guru
Query This CSV File on Linux
You are working as a system administrator and have been tasked with querying a CSV file using only the CLI (Command Line Interface). The file can be downloaded with the following command: ``` curl -O -L https://github.com/linuxacademy/content-intro-to-databases-on-linux/raw/master/demo.csv ``` Once the file is downloaded, you will query this file for the **Department** of the user with an ID of **3**, and the **Name** of the user with an ID of **2**.
Path Info
Table of Contents
-
Challenge
Print the Row with an ID of 3
grep ^3 demo.csv
-
Challenge
Print Only the Department
grep ^3 demo.csv | awk -F, '{ print $3 }'
-
Challenge
Print the Row with an ID of 2
grep ^2 demo.csv
-
Challenge
Print Only the Name
grep ^2 demo.csv | awk -F, '{ print $2 }'
What's a lab?
Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.
Provided environment for hands-on practice
We will provide the credentials and environment necessary for you to practice right within your browser.
Guided walkthrough
Follow along with the author’s guided walkthrough and build something new in your provided environment!
Did you know?
On average, you retain 75% more of your learning if you get time for practice.