Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 243 Bytes

File metadata and controls

10 lines (8 loc) · 243 Bytes

awk command to search lines that contain the date "2012-08-15"

awk '/2012-08-15/ {print}' data.txt

awk command that search in the 1st column the value equal to 30

awk '$1 == 30 {print}' data.txt