#

trim.awk

Trim whitespace. function trim(str) { sub(/^[ \t]*/,"",str); sub(/[ \t]*$/,"",str); return str }