We all know art is not truth. Art is a lie to make us realize the truth. Pablo Picasso
Documentación en Perl
2010-07-29 15:46:50-05 Esta entrada ha sido vista 53 veces.
BSD
Si ya tienes instalado el módulo:
[$] pod2man $( perldoc -l manual ) | groff -mandoc -rD1 -t > manual.ps
y si descargaste el paquete:
[$] cat > pod2ps.sh
#!/bin/sh
ps_file=$( echo "$1" | sed 's/pod$/ps/' )
echo "Parsing: $1"
pod2man "$1" | groff -mandoc -rD1 -t > "$ps_file"
Ctrl+D
[$] find ./perl-5.12.1/ -type f -name '*.pod' -exec ./pod2ps.sh {} \;
Permalink: http://www.mononeurona.org/entries/view/asarch/2320
Commentblogs:









