Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 2081 - 2090 of 3,449 for filetype:txt (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. our.txt

    =over =item our VARLIST X<our> X<global> =item our TYPE VARLIST =item our VARLIST : ATTRS =item our TYPE VARLIST : ATTRS C<our> makes a lexical alias to a package (i.e. global) variable of the same...
    perldoc.perl.org/functions/our.txt
    Registered: Sun Aug 31 21:58:22 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  8. exec.txt

    =over =item exec LIST X<exec> X<execute> =item exec PROGRAM LIST The C<exec> function executes a system command I<and never returns>; use L<C<system>|/system LIST> instead of C<exec> if you want it...
    perldoc.perl.org/functions/exec.txt
    Registered: Sun Aug 31 23:04:51 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  9. 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: Sun Aug 31 21:00:59 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  10. msgrcv.txt

    =over =item msgrcv ID,VAR,SIZE,TYPE,FLAGS X<msgrcv> Calls the System V IPC function msgrcv to receive a message from message queue ID into variable VAR with a maximum message size of SIZE. Note tha...
    perldoc.perl.org/functions/msgrcv.txt
    Registered: Sun Aug 31 23:42:11 UTC 2025
    - 615 bytes
    - Viewed (0)
Back to top