Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1211 - 1220 of 1,302 for label:perl (0.02 sec)

  1. ord.txt

    =over =item ord EXPR X<ord> X<encoding> =item ord Returns the code point of the first character of EXPR. If EXPR is an empty string, returns 0. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. (Note I...
    perldoc.perl.org/functions/ord.txt
    Registered: Mon Feb 17 22:57:15 UTC 2025
    - 319 bytes
    - Viewed (0)
  2. sin.txt

    =over =item sin EXPR X<sin> X<sine> X<asin> X<arcsine> =item sin Returns the sine of EXPR (expressed in radians). If EXPR is omitted, returns sine of L<C<$_>|perlvar/$_>. For the inverse sine opera...
    perldoc.perl.org/functions/sin.txt
    Registered: Tue Feb 18 00:19:16 UTC 2025
    - 338 bytes
    - Viewed (0)
  3. chown.txt

    =over =item chown LIST X<chown> X<owner> X<user> X<group> Changes the owner (and group) of a list of files. The first two elements of the list must be the I<numeric> uid and gid, in that order. A v...
    perldoc.perl.org/functions/chown.txt
    Registered: Tue Feb 18 05:54:48 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top