bregman-arie / devops-exercises

Linux, Jenkins, AWS, SRE, Prometheus, Docker, Python, Ansible, Git, Kubernetes, Terraform, OpenStack, SQL, NoSQL, Azure, GCP, DNS, Elastic, Network, Virtualization. DevOps Interview Questions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

no description for 'awk' command (Line 162)

R-D-Y opened this issue · comments

Proposition :

  • awk: a programming language that is mainly used for text processing and data extraction. It can be used to manipulate and modify text in a file:
    • syntax: awk [OPTIONS] [FILTER] [FILE]
      extracting a specific field from a CSV file: awk -F ',' '{print $1}' file.csv, output: first field of each line in the file

Sounds good. Can you submit a PR?

I can make the PR. Which file's line 162 is mentioned here?

Okay, I thought it wasn't done since no PR was mentioned, no problem :)

PR done last week

#378