http://qs1969.pair.com?node_id=471024


in reply to Favourite One-liners?

To be honest I rarely find myself doing a "pure perl" one liner more sophisticated than the occasional perl -pi -e's/something/somethingelse/g' *, however every once in a while something a little more complicated comes up and you know you've got to use different bits of the toolkit:

perl -MEmail::Folder -e'print $_,"\n" foreach sort map { $_->header("F +rom")} Email::Folder->new("mail/london_pm")->messages()' | uniq -c | +sort -n
Now I'm sure you could do this entirely as purely perl, but what would be the point (apart from proving that you can do it)? As it is the entire pipeline could be made shorter by piping through an additional sort before the uniq rather sorting in Perl (you can lose the map as well as the sort then). This is after all the point of having pipelines and filters and having a rich toolset.

/J\