Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Trailing Whitespace

Name: Anonymous 2012-04-05 7:07

Hey everyone,

A few months ago, I posted my Python script to remove trailing whitespace from a file. Somebody responded with a Perl 1-line code that does the same thing.

I could really use that Perl code now, anybody? Thanks.

Name: Anonymous 2012-04-05 8:06


perl -e 'open F1, "file.txt"; open F2, ">out.txt"; while (<F1>) { s/\s+$//g; print F2 $_.$/; } close F2;'

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List