1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-10 19:26:03 +02:00

add links for 'awk' (#5801)

This commit is contained in:
Ruslan Semagin
2024-06-03 16:24:41 +03:00
committed by Kamran Ahmed
parent bfd0343ee9
commit 3c3b0c02a8

View File

@@ -13,3 +13,9 @@ awk '{print $1,$2}' filename
```
This would display the first and second field (typically separated by spaces) of every line in 'filename'.
Visit the following resources to learn more:
- [IBM.com: Awk by Example](https://developer.ibm.com/tutorials/l-awk1/)
- [Linux Handbook: Awk](https://linuxhandbook.com/awk-command-tutorial/)
- [YouTube](https://www.youtube.com/watch?v=9YOZmI-zWok)