Skip to content

Commit

Permalink
Update README.md (bregman-arie#378)
Browse files Browse the repository at this point in the history
Update description of 'awk' command (line 172 to 174).
  • Loading branch information
R-D-Y authored Apr 7, 2023
1 parent eef46eb commit 93ccde4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions topics/linux/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,9 @@ They take in input (<) and output for a given file (>) using stdin and stdout.
- cut: a tool for cutting out selected portions of each line of a file:
- syntax: `cut OPTION [FILE]`
- cutting first two bytes from a word in a file: `cut -b 1-2 file.md`, output: `wo`
- 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
</b></details>

<details>
Expand Down

0 comments on commit 93ccde4

Please sign in to comment.