Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 198 Bytes

learn_awk.md

File metadata and controls

16 lines (13 loc) · 198 Bytes

Learn awk

echo "one two three" | awk '{print $0}'
one two three
echo "one two three" | awk '{print $1}'
one
echo "one two three" | awk '{print $3}'
three