melo / scripts

My personal script stash

This URL has Read+Write access

scripts / bin / x-filter-strip-trailing-whitespace
100755 7 lines (5 sloc) 0.06 kb
1
2
3
4
5
6
7
#!/usr/bin/env perl
 
while (<>) {
  s/[ \t]+$//m;
  print
}