Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 2041 - 2050 of 2,642 for host:perldoc.perl.org (0.03 sec)

  1. rename.txt

    =over =item rename OLDNAME,NEWNAME X<rename> X<move> X<mv> X<ren> Changes the name of a file; an existing file NEWNAME will be clobbered. Returns true for success; on failure returns false and sets...
    perldoc.perl.org/functions/rename.txt
    Registered: Sun Aug 31 12:08:52 UTC 2025
    - 787 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: Sun Aug 31 03:30:15 UTC 2025
    - 338 bytes
    - Viewed (0)
  3. __PACKAGE__.txt

    =over =item __PACKAGE__ X<__PACKAGE__> A special token that returns the name of the package in which it occurs. =back 120
    perldoc.perl.org/functions/__PACKAGE__.txt
    Registered: Sun Aug 31 06:54:54 UTC 2025
    - 120 bytes
    - Viewed (0)
  4. continue.txt

    =over =item continue BLOCK X<continue> =item continue When followed by a BLOCK, C<continue> is actually a flow control statement rather than a function. If there is a C<continue> BLOCK attached to ...
    perldoc.perl.org/functions/continue.txt
    Registered: Sun Aug 31 16:25:57 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  5. 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: Sun Aug 31 15:54:47 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  6. shutdown.txt

    =over =item shutdown SOCKET,HOW X<shutdown> Shuts down a socket connection in the manner indicated by HOW, which has the same interpretation as in the syscall of the same name. shutdown($socket, 0)...
    perldoc.perl.org/functions/shutdown.txt
    Registered: Sun Aug 31 18:00:47 UTC 2025
    - 813 bytes
    - Viewed (0)
  7. shmctl.txt

    =over =item shmctl ID,CMD,ARG X<shmctl> Calls the System V IPC function shmctl. You'll probably have to say use IPC::SysV; first to get the correct constant definitions. If CMD is C<IPC_STAT>, then...
    perldoc.perl.org/functions/shmctl.txt
    Registered: Sun Aug 31 18:44:19 UTC 2025
    - 534 bytes
    - Viewed (0)
  8. connect.txt

    =over =item connect SOCKET,NAME X<connect> Attempts to connect to a remote socket, just like L<connect(2)>. Returns true if it succeeded, false otherwise. NAME should be a packed address of the app...
    perldoc.perl.org/functions/connect.txt
    Registered: Sun Aug 31 18:15:29 UTC 2025
    - 308 bytes
    - Viewed (0)
  9. 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: Sun Aug 31 15:18:02 UTC 2025
    - 319 bytes
    - Viewed (0)
  10. break.txt

    =over =item break Break out of a C<given> block. C<break> is available only if the L<C<"switch"> feature|feature/The 'switch' feature> is enabled or if it is prefixed with C<CORE::>. The L<C<"switc...
    perldoc.perl.org/functions/break.txt
    Registered: Sun Aug 31 13:27:38 UTC 2025
    - 339 bytes
    - Viewed (0)
Back to top