Converting Other Languages to Perl

If you’ve got old sed and awk programs that you wish were written in Perl, you’re in luck. Not only can Perl do everything that those can do, it has a conversion program, and it’s probably installed on your system. Check the documentation for s2p (for converting from sed) or a2p (for converting from awk).[399] Since programs don’t write programs as well as people do, the results won’t be the best Perl, but it’s a start and it’s easy to tweak. The translated program may be faster or slower than the original, too. After you’ve fixed up any gross inefficiencies in the machine-written Perl code, it should be comparable.

Do you have C algorithms you want to use from Perl? Luck is on your side; it’s not too hard to put C code into a compiled module that can be used from Perl. In fact, just about any language that compiles to make object code can be used to make a module. See the perlxs manpage and the Inline module, as well as the SWIG system.

Do you have a shell script you want to convert to Perl? Your luck has run out. There’s no automatic way to convert shell to Perl. That’s because the shell hardly does anything by itself; it spends all of its time running other programs. Sure, we could make a program that would mostly call system for each line of the shell, but that would be slower than letting the shell do things in the first place. It takes a human level of intelligence to see how the shell’s use of cut, rm, sed, awk, and grep can be turned into ...

Get Learning Perl, Fourth Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.