01: /*
02:
03: This software is OSI Certified Open Source Software.
04: OSI Certified is a certification mark of the Open Source Initiative.
05:
06: The license (Mozilla version 1.0) can be read at the MMBase site.
07: See http://www.MMBase.org/license
08:
09: */
10: package org.mmbase.util.transformers;
11:
12: /**
13: * And yet another rather idiotic type of Transformer. Interpret the String as a perl program and
14: * transform it to its result. The perl interpretetor needs to be in the PATH.
15: *
16: * @author Michiel Meeuwissen
17: * @since MMBase-1.7
18: * @version $Id: Perl.java,v 1.1 2003/05/12 21:09:52 michiel Exp $
19: */
20:
21: public class Perl extends AbstractCommandStringTransformer implements
22: CharTransformer {
23: protected String[] getCommand() {
24: return new String[] { "perl" };
25: }
26: }
|