rtw 85 B

12345
  1. #!/bin/sh
  2. # rtw = Remove Trailing Whitespace
  3. awk '{gsub(/[ \t]+$/,"",$0);print $0}'