Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 3171 - 3180 of 3,417 for filetype:txt (0.05 sec)

  1. oct.txt

    =over =item oct EXPR X<oct> X<octal> X<hex> X<hexadecimal> X<binary> X<bin> =item oct Interprets EXPR as an octal string and returns the corresponding value. An octal string consists of octal digit...
    perldoc.perl.org/functions/oct.txt
    Registered: Tue Feb 18 03:38:46 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  2. printf.txt

    =over =item printf FILEHANDLE FORMAT, LIST X<printf> =item printf FILEHANDLE =item printf FORMAT, LIST =item printf Equivalent to C<print FILEHANDLE sprintf(FORMAT, LIST)>, except that L<C<$\>|perl...
    perldoc.perl.org/functions/printf.txt
    Registered: Tue Feb 18 03:44:47 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  3. fileno.txt

    =over =item fileno FILEHANDLE X<fileno> =item fileno DIRHANDLE Returns the file descriptor for a filehandle or directory handle, or undefined if the filehandle is not open. If there is no real file...
    perldoc.perl.org/functions/fileno.txt
    Registered: Tue Feb 18 03:17:55 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  4. socketpair.txt

    =over =item socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL X<socketpair> Creates an unnamed pair of sockets in the specified domain, of the specified type. DOMAIN, TYPE, and PROTOCOL are specified...
    perldoc.perl.org/functions/socketpair.txt
    Registered: Tue Feb 18 08:37:18 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  5. readpipe.txt

    =over =item readpipe EXPR =item readpipe X<readpipe> EXPR is executed as a system command. The collected standard output of the command is returned. In scalar context, it comes back as a single (po...
    perldoc.perl.org/functions/readpipe.txt
    Registered: Tue Feb 18 06:37:51 UTC 2025
    - 622 bytes
    - Viewed (0)
  6. msgsnd.txt

    =over =item msgsnd ID,MSG,FLAGS X<msgsnd> Calls the System V IPC function msgsnd to send the message MSG to the message queue ID. MSG must begin with the native long integer message type, followed ...
    perldoc.perl.org/functions/msgsnd.txt
    Registered: Tue Feb 18 08:03:34 UTC 2025
    - 506 bytes
    - Viewed (0)
  7. exec.txt

    =over =item exec LIST X<exec> X<execute> =item exec PROGRAM LIST The L<C<exec>|/exec LIST> function executes a system command I<and never returns>; use L<C<system>|/system LIST> instead of L<C<exec...
    perldoc.perl.org/functions/exec.txt
    Registered: Tue Feb 18 09:28:55 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  8. fork.txt

    =over =item fork X<fork> X<child> X<parent> Does a L<fork(2)> system call to create a new process running the same program at the same point. It returns the child pid to the parent process, C<0> to...
    perldoc.perl.org/functions/fork.txt
    Registered: Tue Feb 18 10:54:59 UTC 2025
    - 2K bytes
    - Viewed (0)
  9. continue.txt

    =over =item continue BLOCK X<continue> =item continue When followed by a BLOCK, L<C<continue>|/continue BLOCK> is actually a flow control statement rather than a function. If there is a L<C<continu...
    perldoc.perl.org/functions/continue.txt
    Registered: Tue Feb 18 12:28:15 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  10. write.txt

    =over =item write FILEHANDLE X<write> =item write EXPR =item write Writes a formatted record (possibly multi-line) to the specified FILEHANDLE, using the format associated with that file. By defaul...
    perldoc.perl.org/functions/write.txt
    Registered: Tue Feb 18 10:31:48 UTC 2025
    - 1.7K bytes
    - Viewed (0)
Back to top