A web development/programming blog providing info, tips, and tricks on programming languages, scripting, Linux, MySQL and more
awk Cheat Sheet
- awk -v nr=N '{ for (x=nr; x<=NF; x++) {printf $x " "; }; print " " }'
- Use awk to print from field N to the end of the line.

