Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 2791 - 2800 of 3,463 for filetype:txt (0.04 sec)

  1. join.txt

    =over =item join EXPR,LIST X<join> Joins the separate strings of LIST into a single string with fields separated by the value of EXPR, and returns that new string. Example: my $rec = join(':', $log...
    perldoc.perl.org/functions/join.txt
    Registered: Thu Jun 05 09:55:41 UTC 2025
    - 455 bytes
    - Viewed (0)
  2. readlink.txt

    =over =item readlink EXPR X<readlink> =item readlink Returns the value of a symbolic link, if symbolic links are implemented. If not, raises an exception. If there is a system error, returns the un...
    perldoc.perl.org/functions/readlink.txt
    Registered: Thu Jun 05 14:14:47 UTC 2025
    - 349 bytes
    - Viewed (0)
  3. 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: Thu Jun 05 18:37:12 UTC 2025
    - 2K bytes
    - Viewed (0)
  4. 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: Thu Jun 05 18:29:57 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  5. 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: Thu Jun 05 21:11:36 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  6. 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: Thu Jun 05 19:00:39 UTC 2025
    - 534 bytes
    - Viewed (0)
  7. 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: Thu Jun 05 18:53:21 UTC 2025
    - 506 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: Thu Jun 05 20:25:12 UTC 2025
    - 308 bytes
    - Viewed (0)
  9. break.txt

    =over =item break Break out of a C<given> block. L<C<break>|/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 ...
    perldoc.perl.org/functions/break.txt
    Registered: Thu Jun 05 23:08:22 UTC 2025
    - 349 bytes
    - Viewed (0)
  10. tied.txt

    =over =item tied VARIABLE X<tied> Returns a reference to the object underlying VARIABLE (the same value that was originally returned by the L<C<tie>|/tie VARIABLE,CLASSNAME,LIST> call that bound th...
    perldoc.perl.org/functions/tied.txt
    Registered: Thu Jun 05 19:04:22 UTC 2025
    - 297 bytes
    - Viewed (0)
Back to top