Re: Perl golf article at Perl Monks
Eirik Berg Hanssen <[email protected]> Thu, 10 Mar 2005 19:40:18 +0100
| Newsgroups | gmane.comp.lang.perl.golf |
|---|---|
| Organization | Du Allverden AS |
| Message-ID | <[email protected]> |
Ala Qumsieh <[email protected]> writes: > I came up with this: > perl -aF"\n" -lp0 -i -e '$_=join$\,reverse@F' in.file > > But then, I remembered Eugene's (in)famous solution to > reverse sort, but couldn't get it to work: > > perl -pi -e '$x=$_.$x}{$_=$x' in.file > > This prints to screen, not back to the file. > Any takers? (It prints to screen because the special output file is no longer select()ed. But you all knew that.) My take: perl -ni -e 'eof&&print;$\=$_.$\' in.file Eirik -- GUIs normally make it simple to accomplish simple actions and impossible to accomplish complex actions. -- Doug Gwyn (in comp.unix.wizards on June 22, 1991)