Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 3381 - 3390 of 3,463 for filetype:txt (0.05 sec)

  1. 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: Mon Jun 23 02:36:37 UTC 2025
    - 813 bytes
    - Viewed (0)
  2. 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: Mon Jun 23 03:54:46 UTC 2025
    - 534 bytes
    - Viewed (0)
  3. 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: Mon Jun 23 04:36:30 UTC 2025
    - 308 bytes
    - Viewed (0)
  4. 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: Mon Jun 23 00:14:23 UTC 2025
    - 349 bytes
    - Viewed (0)
  5. our.txt

    =over =item our VARLIST X<our> X<global> =item our TYPE VARLIST =item our VARLIST : ATTRS =item our TYPE VARLIST : ATTRS L<C<our>|/our VARLIST> makes a lexical alias to a package (i.e. global) vari...
    perldoc.perl.org/functions/our.txt
    Registered: Mon Jun 23 08:17:16 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  6. 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: Mon Jun 23 08:55:32 UTC 2025
    - 2K bytes
    - Viewed (0)
  7. 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: Mon Jun 23 06:55:21 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  8. return.txt

    =over =item return EXPR X<return> =item return Returns from a subroutine, L<C<eval>|/eval EXPR>, L<C<do FILE>|/do EXPR>, L<C<sort>|/sort SUBNAME LIST> block or regex eval block (but not a L<C<grep>...
    perldoc.perl.org/functions/return.txt
    Registered: Mon Jun 23 07:45:57 UTC 2025
    - 1K bytes
    - Viewed (0)
  9. lock.txt

    =over =item lock THING X<lock> This function places an advisory lock on a shared variable or referenced object contained in I<THING> until the lock goes out of scope. The value returned is the scal...
    perldoc.perl.org/functions/lock.txt
    Registered: Mon Jun 23 04:51:47 UTC 2025
    - 565 bytes
    - Viewed (0)
  10. getpriority.txt

    =over =item getpriority WHICH,WHO X<getpriority> X<priority> X<nice> Returns the current priority for a process, a process group, or a user. (See L<getpriority(2)>.) Will raise a fatal exception if...
    perldoc.perl.org/functions/getpriority.txt
    Registered: Mon Jun 23 06:45:18 UTC 2025
    - 426 bytes
    - Viewed (0)
Back to top