What is your latest useful Perl one-liner (or a pipe involving Perl)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T15:47:22Zhttp://stackoverflow.com/feeds/question/111868http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl10What is your latest useful Perl one-liner (or a pipe involving Perl)?J.F. Sebastian2008-09-21T19:43:29Z2009-12-22T12:27:48Z
<p>The one-liner should:</p>
<ul>
<li>solve a real-world problem</li>
<li>not be extensively cryptic (should be easy to understand and reproduce)</li>
<li>be worth the time it takes to write it (should not be too clever)</li>
</ul>
<p>I'm looking for practical tips and tricks (complementary examples for <code>perldoc perlrun</code>).</p>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/111869#1118697Answer by J.F. Sebastian for What is your latest useful Perl one-liner (or a pipe involving Perl)?J.F. Sebastian2008-09-21T19:43:38Z2008-09-23T07:12:06Z<p><em>The problem</em>: A media player does not automatically load subtitles due to their names differ from corresponding video files.</p>
<p><em>Solution</em>: Rename all *.srt (files with subtitles) to match the *.avi (files with video).</p>
<pre><code>perl -e'while(<*.avi>) { s/avi$/srt/; rename <*.srt>, $_ }'
</code></pre>
<p>CAVEAT: Sorting order of original video and subtitle filenames should be the same.</p>
<p>Here, a more verbose version of the above one-liner:</p>
<pre><code>my @avi = glob('*.avi');
my @srt = glob('*.srt');
for my $i (0..$#avi)
{
my $video_filename = $avi[$i];
$video_filename =~ s/avi$/srt/; # 'movie1.avi' -> 'movie1.srt'
my $subtitle_filename = $srt[$i]; # 'film1.srt'
rename($subtitle_filename, $video_filename); # 'film1.srt' -> 'movie1.srt'
}
</code></pre>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/111924#11192411Answer by Andy Lester for What is your latest useful Perl one-liner (or a pipe involving Perl)?Andy Lester2008-09-21T20:02:46Z2008-09-21T20:02:46Z<p>Please see my slides for <a href="http://petdance.com/perl/command-line-options.pdf" rel="nofollow">"A Field Guide To The Perl Command Line Options."</a></p>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/112339#112339-6Answer by jkramer for What is your latest useful Perl one-liner (or a pipe involving Perl)?jkramer2008-09-21T22:19:40Z2008-09-22T12:14:36Z<p>At some time I found that anything I would want to do with perl that is short enough to be done on the command line with 'perl -e' can be done better, easier and faster with normal ZSH features without the hassle of quoting. E.g. the example above could be done like this:</p>
<pre><code>for foo in *.avi; mv *.srt ${foo:r}.srt
</code></pre>
<p><strong>UPDATE</strong></p>
<p>The onliner above is obiously wrong, sorry for not reading carefully. Here is the correct version:</p>
<pre><code>srt=(*.srt); for foo in *.avi; mv $srt[1] ${foo:r}.srt && srt=($srt[2,-1])
</code></pre>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/112624#1126249Answer by pjf for What is your latest useful Perl one-liner (or a pipe involving Perl)?pjf2008-09-22T00:13:44Z2008-09-22T00:13:44Z<p>Squid log files. They're great, aren't they? Except by default they have seconds-from-the-epoch as the time field. Here's a one-liner that reads from a squid log file and converts the time into a human readable date:</p>
<pre><code>perl -pe's/([\d.]+)/localtime $1/e;' access.log
</code></pre>
<p>With a small tweak, you can make it only display lines with a keyword you're interested in. The following watches for stackoverflow.com accesses and prints only those lines, with a human readable date. To make it more useful, I'm giving it the output of <code>tail -f</code>, so I can see accesses in real time:</p>
<pre><code>tail -f access.log | perl -ne's/([\d.]+)/localtime $1/e,print if /stackoverflow\.com/'
</code></pre>
<p>Cheerio,</p>
<pre><code>Paul
</code></pre>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/113660#1136603Answer by dland for What is your latest useful Perl one-liner (or a pipe involving Perl)?dland2008-09-22T07:41:54Z2008-09-22T07:41:54Z<p>One of the biggest bandwidth hogs at $work is download web advertising, so I'm looking at the low-hanging fruit waiting to be picked. I've got rid of Google ads, now I have Microsoft in my line of sights. So I run a tail on the log file, and pick out the lines of interest:</p>
<pre><code>tail -F /var/log/squid/access.log | \
perl -ane 'BEGIN{$|++} $F[6] =~ m{\Qrad.live.com/ADSAdClient31.dll}
&& printf "%02d:%02d:%02d %15s %9d\n",
sub{reverse @_[0..2]}->(localtime $F[0]), @F[2,4]'
</code></pre>
<p>What the Perl pipe does is to begin by setting autoflush to true, so that any that is acted upon is printed out immediately. Otherwise the output it chunked up and one receives a batch of lines when the output buffer fills. The -a switch splits each input line on white space, and saves the results in the array @F (functionality inspired by awk's capacity to split input records into its $1, $2, $3... variables).</p>
<p>It checks whether the 7th field in the line contains the URI we seek (using \Q to save us the pain of escaping uninteresting metacharacters). If a match is found, it pretty-prints the time, the source IP and the number of bytes returned from the remote site.</p>
<p>The time is obtained by taking the epoch time in the first field and using 'localtime' to break it down into its components (hour, minute, second, day, month, year). It takes a slice of the first three elements returns, second, minute and hour, and reverses the order to get hour, minute and second. This is returned as a three element array, along with a slice of the third (IP address) and fifth (size) from the original @F array. These five arguments are passed to sprintf which formats the results.</p>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/113716#11371610Answer by Ovid for What is your latest useful Perl one-liner (or a pipe involving Perl)?Ovid2008-09-22T07:59:22Z2008-09-22T08:05:54Z<p>You may not think of this as Perl, but I use <a href="http://search.cpan.org/~petdance/ack-1.86/" rel="nofollow">ack</a> religiously (it's a smart grep replacement written in Perl) and that lets me edit, for example, all of my Perl tests which access a particular part of our API:</p>
<pre><code>vim $(ack --perl -l 'api/v1/episode' t)
</code></pre>
<p>As a side note, if you use vim, you can <a href="http://use.perl.org/~Ovid/journal/37470" rel="nofollow">run all of the tests in your editor's buffers</a>.</p>
<p>For something with more obvious (if simple) Perl, I needed to know how many test programs used out test fixtures in the t/lib/TestPM directory (I've cut down the command for clarity).</p>
<pre><code>ack $(ls t/lib/TestPM/|awk -F'.' '{print $1}'|xargs perl -e 'print join "|" => @ARGV') aggtests/ t -l
</code></pre>
<p>Note how the "join" turns the results into a regex to feed to ack.</p>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/114520#1145202Answer by jkramer for What is your latest useful Perl one-liner (or a pipe involving Perl)?jkramer2008-09-22T12:23:22Z2008-09-22T12:23:22Z<p>In response to Ovids vim/ack combination:</p>
<p>I too am often searching for something and then want to open the matching files in Vim, so I made myself a little shortcut some time ago (works in ZSH only, I think):</p>
<pre><code>function vimify-eval; {
if [[ ! -z "$BUFFER" ]]; then
if [[ $BUFFER = 'ack'* ]]; then
BUFFER="$BUFFER -l"
fi
BUFFER="vim \$($BUFFER)"
zle accept-line
fi
}
zle -N vim-eval-widget vimify-eval
bindkey '^P' vim-eval-widget
</code></pre>
<p>It works like this: I search for something using ack, like <code>ack some-pattern</code>. I look at the results and if I like it, I press arrow-up to get the ack-line again and then press CTRL+P. What happens then is that ZSH appends and "-l" for listing filenames only if the command starts with "ack". Then it puts "$(...)" around the command and "vim" in front of it. Then the whole thing is executed.</p>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/114885#1148850Answer by Kwondri for What is your latest useful Perl one-liner (or a pipe involving Perl)?Kwondri2008-09-22T13:31:48Z2008-09-22T13:31:48Z<p>Here is one that I find handy when dealing with a collection compressed log files:</p>
<pre><code> open STATFILE, "zcat $logFile|" or die "Can't open zcat of $logFile" ;
</code></pre>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/117972#1179722Answer by jtimberman for What is your latest useful Perl one-liner (or a pipe involving Perl)?jtimberman2008-09-22T22:18:26Z2008-09-22T22:18:26Z<p>I use this quite frequently to quickly convert epoch times to a useful datestamp.</p>
<pre><code>perl -l -e 'print scalar(localtime($ARGV[0]))'
</code></pre>
<p>Make an alias in your shell:</p>
<pre><code>alias e2d="perl -le \"print scalar(localtime($ARGV[0]));\""
</code></pre>
<p>Then pipe an epoch number to the alias.</p>
<pre><code>echo 1219174516 | e2d
</code></pre>
<p>Many programs and utilities on Unix/Linux use epoch values to represent time, so this has proved invaluable for me.</p>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/120722#1207221Answer by mtk for What is your latest useful Perl one-liner (or a pipe involving Perl)?mtk2008-09-23T12:38:36Z2008-09-23T12:38:36Z<p>filters a stream of white-space separated stanzas (name/value pair lists),
sorting each stanza individually:</p>
<p><b>perl -00 -ne 'print sort split /^/'</b></p>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/123375#1233751Answer by ephemient for What is your latest useful Perl one-liner (or a pipe involving Perl)?ephemient2008-09-23T19:49:29Z2008-10-01T19:59:59Z<p>Expand all tabs to spaces: <code>perl -pe'1while+s/\t/" "x(8-pos()%8)/e'</code></p>
<p>Of course, this could be done with :set et, :ret in Vim.</p>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/159471#1594712Answer by dr_pepper for What is your latest useful Perl one-liner (or a pipe involving Perl)?dr_pepper2008-10-01T20:08:03Z2008-10-01T20:08:03Z<p>Remove duplicates in path variable:</p>
<pre><code>set path=(`echo $path | perl -e 'foreach(split(/ /,<>)){print $_," " unless $s{$_}++;}'`)
</code></pre>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/160060#1600602Answer by Shawn H Corey for What is your latest useful Perl one-liner (or a pipe involving Perl)?Shawn H Corey2008-10-01T22:33:34Z2008-10-01T22:33:34Z<p>The Perl one-liner I use the most is the Perl calculator</p>
<pre><code>perl -ple '$_=eval'
</code></pre>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/164844#1648446Answer by Randal Schwartz for What is your latest useful Perl one-liner (or a pipe involving Perl)?Randal Schwartz2008-10-02T22:13:42Z2008-10-02T22:13:42Z<p>"last" means "final", as in, I'd never write another again.</p>
<p>That's not gonna happen. I'm gonna keep writing Perl one-liners as long as the prompt accepts it.</p>
<p>Perhaps you meant "latest".</p>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/164978#1649784Answer by J.F. Sebastian for What is your latest useful Perl one-liner (or a pipe involving Perl)?J.F. Sebastian2008-10-02T23:04:41Z2008-10-02T23:21:59Z<p>@<a href="#159471" rel="nofollow">dr_pepper</a></p>
<p>Remove <em>literal</em> duplicates in <code>$PATH</code>:</p>
<pre><code>$ export PATH=$(perl -F: -ane'print join q/:/, grep { !$c{$_}++ } @F'<<<$PATH)
</code></pre>
<p>Print unique clean paths from <code>%PATH%</code> environment variable (it doesn't touch <code>../</code> and alike, replace <code>File::Spec->rel2abs</code> by <code>Cwd::realpath</code> if it is desirable) It is not a one-liner to be more portable: </p>
<pre><code>#!/usr/bin/perl -w
use File::Spec;
$, = "\n";
print grep { !$count{$_}++ }
map { File::Spec->rel2abs($_) }
File::Spec->path;
</code></pre>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/165694#1656946Answer by John Siracusa for What is your latest useful Perl one-liner (or a pipe involving Perl)?John Siracusa2008-10-03T04:31:21Z2008-10-03T04:31:21Z<p>The common idiom of using <code>find ... -exec rm {} \;</code> to delete a set of files somewhere in a directory tree is not particularly efficient in that it executes the <code>rm</code> command once for each file found. One of my habits, born from the days when computers weren't quite as fast (dagnabbit!), is to replace many calls to <code>rm</code> with one call to perl:</p>
<pre><code>find . -name '*.whatever' | perl -lne unlink
</code></pre>
<p>The <code>perl</code> part of the command line reads the list of files emitted* by <code>find</code>, one per line, trims the newline off, and deletes the file using perl's built-in <code>unlink()</code> function, which takes <code>$_</code> as its argument if no explicit argument is supplied. (<code>$_</code> is set to each line of input thanks to the <code>-n</code> flag.) (*These days, most <code>find</code> commands do <code>-print</code> by default, so I can leave that part out.)</p>
<p>I like this idiom not only because of the efficiency (possibly less important these days) but also because it has fewer chorded/awkward keys than typing the traditional <code>-exec rm {} \;</code> sequence. It also avoids quoting issues caused by file names with spaces, quotes, etc., of which I have many. (A more robust version might use <code>find</code>'s <code>-print0</code> option and then ask <code>perl</code> to read null-delimited records instead of lines, but I'm usually pretty confident that my file names do not contain embedded newlines.)</p>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/508306#5083064Answer by J.F. Sebastian for What is your latest useful Perl one-liner (or a pipe involving Perl)?J.F. Sebastian2009-02-03T18:26:48Z2009-02-04T12:13:18Z<p>All one-liners from the answers collected in one place: </p>
<ul>
<li><p><code>perl -pe's/([\d.]+)/localtime $1/e;' access.log</code></p></li>
<li><p><code>ack $(ls t/lib/TestPM/|awk -F'.' '{print $1}'|xargs perl -e 'print join "|" => @ARGV')
aggtests/ t -l</code></p></li>
<li><p><code>perl -e'while(<*.avi>) { s/avi$/srt/; rename <*.srt>, $_ }'</code></p></li>
<li><p><code>find . -name '*.whatever' | perl -lne unlink</code></p></li>
<li><p><code>tail -F /var/log/squid/access.log | perl -ane 'BEGIN{$|++} $F[6] =~ m{\Qrad.live.com/ADSAdClient31.dll}
&& printf "%02d:%02d:%02d %15s %9d\n", sub{reverse @_[0..2]}->(localtime $F[0]), @F[2,4]'</code></p></li>
<li><p><code>export PATH=$(perl -F: -ane'print join q/:/, grep { !$c{$_}++ } @F'<<<$PATH)</code></p></li>
<li><p><code>alias e2d="perl -le \"print scalar(localtime($ARGV[0]));\""</code></p></li>
<li><p><code>perl -ple '$_=eval'</code></p></li>
<li><p><code>perl -00 -ne 'print sort split /^/'</code></p></li>
<li><p><code>perl -pe'1while+s/\t/" "x(8-pos()%8)/e'</code></p></li>
<li><code>tail -f log | perl -ne '$s=time() unless $s; $n=time(); $d=$n-$s; if ($d>=2) { print qq
($. lines in last $d secs, rate ),$./$d,qq(\n); $. =0; $s=$n; }'</code></li>
</ul>
<p>See corresponding answers for their descriptions.</p>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/508432#5084322Answer by JDrago for What is your latest useful Perl one-liner (or a pipe involving Perl)?JDrago2009-02-03T18:55:28Z2009-02-03T18:55:28Z<p>Remove MS-DOS line-endings.</p>
<pre><code>perl -p -i -e 's/\r\n$/\n/' htdocs/*.asp
</code></pre>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/510974#5109741Answer by melo for What is your latest useful Perl one-liner (or a pipe involving Perl)?melo2009-02-04T11:38:12Z2009-02-04T11:38:12Z<p>One of the most recent one-liners that got a place in my ~/bin:</p>
<pre><code>perl -ne '$s=time() unless $s; $n=time(); $d=$n-$s; if ($d>=2) { print "$. lines in last $d secs, rate ",$./$d,"\n"; $. =0; $s=$n; }'
</code></pre>
<p>You would use it against a tail of a log file and it will print the rate of lines being outputed.</p>
<p>Want to know how many hits per second you are getting on your webservers? tail -f log | this_script.</p>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/1440678#14406781Answer by Peter Mortensen for What is your latest useful Perl one-liner (or a pipe involving Perl)?Peter Mortensen2009-09-17T18:52:40Z2009-09-17T23:07:56Z<p>Extracting Stack Overflow reputation without having to open a web page:</p>
<pre><code>perl -nle "print ' Stack Overflow ' . $1 . ' (no change)' if /\s{20,99}([0-9,]{3,6})<\/div>/;" "SO.html" >> SOscores.txt
</code></pre>
<p>This assumes the user page has already been downloaded to file SO.html. I use wget for this purpose. The notation here is for Windows command line; it would be slighly different for Linux or Mac OS X. The output is appended to a text file.</p>
<p>I use it in a BAT script to automate sampling of reputation on the four sites in the family:
Stack Overflow, Server Fault, Super User and Meta Stack Overflow.</p>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/1440698#14406981Answer by Adam Bellaire for What is your latest useful Perl one-liner (or a pipe involving Perl)?Adam Bellaire2009-09-17T18:56:27Z2009-09-17T18:56:27Z<p>Get human-readable output from <code>du</code>, sorted by size:</p>
<pre><code>perl -e '%h=map{/.\s/;7x(ord$&&10)+$`,$_}`du -h`;print@h{sort%h}'
</code></pre>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/1441948#14419481Answer by singingfish for What is your latest useful Perl one-liner (or a pipe involving Perl)?singingfish2009-09-17T23:59:21Z2009-09-17T23:59:21Z<p>I have a list of tags with which I identify portions of text. The master list is of the format:</p>
<pre><code>text description {tag_label}
</code></pre>
<p>It's important that the <code>{tag_label}</code> are not duplicated. So there's this nice simple script:</p>
<pre><code>perl -ne '($c) = $_ =~ /({.*?})/; print $c,"\n" ' $1 | sort | uniq -c | sort -d
</code></pre>
<p>I know that I could do the whole lot in shell or perl, but this was the first thing that came to mind.</p>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl/1946084#19460840Answer by Unbelieveable Stuff for What is your latest useful Perl one-liner (or a pipe involving Perl)?Unbelieveable Stuff2009-12-22T12:27:48Z2009-12-22T12:27:48Z<p>Nice One.......</p>