• Publicidad

Caracteres raros en perldoc

¿Apenas comienzas con Perl? En este foro podrás encontrar y hacer preguntas básicas de Perl con respuestas aptas a tu nivel.

Caracteres raros en perldoc

Notapor alqui » 2007-10-26 06:21 @306

Hola cuando intento usar perldoc, se me imprimen unos códigos raros.

Por ejemplo, si hago "perldoc -f system", me sale:

Código: Seleccionar todo
 system LIST
       system PROGRAM LIST
               Does exactly the same thing as "exec LIST", except that a fork is done first, and the parent process waits for the child process to com�<80>
<90>
               plete.  Note that argument processing varies depending on the number of arguments.  If there is more than one argument in LIST, or if LIST
               is an array with more than one value, starts the program given by the first element of the list with arguments given by the rest of the
               list.  If there is only one scalar argument, the argument is checked for shell metacharacters, and if there are any, the entire argument
               is passed to the system�<80><99>s command shell for parsing (this is "/bin/sh �<88><92>c" on Unix platforms, but varies on other platforms).  If there are
               no shell metacharacters in the argument, it is split into words and passed directly to "execvp", which is more efficient.

               Beginning with v5.6.0, Perl will attempt to flush all files opened for output before any operation that may do a fork, but this may not be
               supported on some platforms (see perlport).  To be safe, you may need to set $�<8E>� ($AUTOFLUSH in English) or call the "autoflush()" method
               of "IO::Handle" on any open handles.

               The return value is the exit status of the program as returned by the "wait" call.  To get the actual exit value, shift right by eight
               (see below). See also "exec".  This is not what you want to use to capture the output from a command, for that you should use merely back�<80><90>
               ticks or "qx//", as described in "�<80><98>STRING�<80><98>" in perlop.  Return value of �<88><92>1 indicates a failure to start the program or an error of the
               wait(2) system call (inspect $! for the reason).

               Like "exec", "system" allows you to lie to a program about its name if you use the "system PROGRAM LIST" syntax.  Again, see "exec".

               Since "SIGINT" and "SIGQUIT" are ignored during the execution of "system", if you expect your program to terminate on receipt of these
               signals you will need to arrange to do so yourself based on the return value.

                   @args = ("command", "arg1", "arg2");
                   system(@args) == 0
                        or die "system @args failed: $?"

               You can check all the failure possibilities by inspecting $? like this:

                   if ($? == �<80><90>1) {
                       print "failed to execute: $!\n";
                   }
                   elsif ($? & 127) {
                       printf "child died with signal %d, %s coredump\n",
                           ($? & 127),  ($? & 128) ? �<80><99>with�<80><99> : �<80><99>without�<80><99>;
                   }
                   else {
                       printf "child exited with value %d\n", $? >> 8;
                   }

               or more portably by using the W*() calls of the POSIX extension; see perlport for more information.

               When the arguments get executed via the system shell, results and return codes will be subject to its quirks and capabilities.  See
               "�<80><98>STRING�<80><98>" in perlop and "exec" for details.
(END)


¿Alguien sabe cómo arreglarlo? ¡Gracias!
alqui
Perlero nuevo
Perlero nuevo
 
Mensajes: 27
Registrado: 2007-09-17 13:12 @591

Publicidad

Notapor explorer » 2007-10-26 07:22 @348

¿En qué sistema operativo estás? ¿Usas consola de comandos, terminal, qué terminal? ¿Qué versión de Perl tienes?
JF^D Perl programming & Raku programming. Grupo en Telegram: https://t.me/Perl_ES
Avatar de Usuario
explorer
Administrador
Administrador
 
Mensajes: 14480
Registrado: 2005-07-24 18:12 @800
Ubicación: Valladolid, España

Notapor alqui » 2007-10-26 10:42 @487

Uso arch linux con el shell bash y me pasa tanto en konsole, como en xterm, como en las consolas virtuales (Ctrl-Alt-Fn). La version de perl es la 5.8.8.
alqui
Perlero nuevo
Perlero nuevo
 
Mensajes: 27
Registrado: 2007-09-17 13:12 @591

Notapor explorer » 2007-10-26 14:05 @629

Es muy extraño... los caracteres aparecen en el lugar de guiones, comillas, comillas invertidas...

Prueba con
Código: Seleccionar todo
perldoc -oman -f system
JF^D Perl programming & Raku programming. Grupo en Telegram: https://t.me/Perl_ES
Avatar de Usuario
explorer
Administrador
Administrador
 
Mensajes: 14480
Registrado: 2005-07-24 18:12 @800
Ubicación: Valladolid, España

Notapor alqui » 2007-10-27 20:26 @893

Pues no, ese comando no me lo arregla.

P.D: Por otro motivo, hoy he tenido que instalar debian en otra partición y en los próximos meses seguramente usaré mucho mas debian que arh. En debian, perldoc, me funciona perfecto. Por tanto no hace falta que nos rompamos la cabeza con ese problema. Aunque si a alguien le salta la chispa y sabe la solución, será muy bien recibida para cuando vuelva a usar arch.

Muchas gracias explorer!
alqui
Perlero nuevo
Perlero nuevo
 
Mensajes: 27
Registrado: 2007-09-17 13:12 @591

Notapor creating021 » 2007-10-28 09:50 @451

Expect the worst, is it the least you can do?
Avatar de Usuario
creating021
Perlero frecuente
Perlero frecuente
 
Mensajes: 595
Registrado: 2006-02-23 16:17 @720
Ubicación: Frente al monitor


Volver a Básico

¿Quién está conectado?

Usuarios navegando por este Foro: No hay usuarios registrados visitando el Foro y 23 invitados

cron