CodyKochmann
4/4/2017 - 12:15 AM

awk examples

awk examples

# print numbers from 1-10
awk 'BEGIN { for (i = 1; i <= 10; i++) print i }'