La Documentación

Las líneas de la 9 a la 34 documentan el uso del programa mediante un lenguaje de marcas denominado pod . Podemos ver la documentación con perldoc:

lhp@nereida:~/Lperl/src$ perldoc example1.pl

EXAMPLE1(1)           User Contributed Perl Documentation          EXAMPLE1(1)



NAME example1.pl
SYNOPSIS
         example1.pl < file

DESCRIPTION
       Reads file "file" and prints all the lines containing the string "LHP" 
       up to a line containing the string
       "__END__". For example given the input file:

       lhp@nereida:~/Lperl/src$ cat -n example1.input
            1  Esta linea no se imprime
            2  Esta linea si se imprime LHP
            3  Esta no
            4  Esta LHP si
            5  __END__
            6  y se acabo LHP
            7  esta linea tampoco sale

       the program produces the following output:

         lhp@nereida:~/Lperl/src$ example1.pl < example1.input
         Esta linea si se imprime LHP
         Esta LHP si



perl v5.8.8                       2007-02-23                       EXAMPLE1(1)


Para saber mas sobre el sistema de documentación Perl lea la sección 5.18.

Casiano Rodríguez León
Licencia de Creative Commons
Principios de Programación Imperativa, Funcional y Orientada a Objetos Una Introducción en Perl/Una Introducción a Perl
por Casiano Rodríguez León is licensed under a Creative Commons Reconocimiento 3.0 Unported License.

Permissions beyond the scope of this license may be available at http://campusvirtual.ull.es/ocw/course/view.php?id=43.
2012-06-19