Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 641 - 650 of 3,803 for filetype:txt (0.04 sec)

  1. close.txt

    =over =item close FILEHANDLE X<close> =item close Closes the file or pipe associated with the filehandle, flushes the IO buffers, and closes the system file descriptor. Returns true if those operat...
    perldoc.perl.org/functions/close.txt
    Registered: Thu Jun 05 13:31:21 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  2. sleep.txt

    =over =item sleep EXPR X<sleep> X<pause> =item sleep Causes the script to sleep for (integer) EXPR seconds, or forever if no argument is given. Returns the integer number of seconds actually slept....
    perldoc.perl.org/functions/sleep.txt
    Registered: Thu Jun 05 17:58:25 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  3. chroot.txt

    =over =item chroot FILENAME X<chroot> X<root> =item chroot This function works like the system call by the same name: it makes the named directory the new root directory for all further pathnames t...
    perldoc.perl.org/functions/chroot.txt
    Registered: Thu Jun 05 13:22:32 UTC 2025
    - 760 bytes
    - Viewed (0)
  4. wait.txt

    =over =item wait X<wait> Behaves like L<wait(2)> on your system: it waits for a child process to terminate and returns the pid of the deceased process, or C<-1> if there are no child processes. The...
    perldoc.perl.org/functions/wait.txt
    Registered: Thu Jun 05 16:16:53 UTC 2025
    - 754 bytes
    - Viewed (0)
  5. rmdir.txt

    =over =item rmdir FILENAME X<rmdir> X<rd> X<directory, remove> =item rmdir Deletes the directory specified by FILENAME if that directory is empty. If it succeeds it returns true; otherwise it retur...
    perldoc.perl.org/functions/rmdir.txt
    Registered: Thu Jun 05 14:24:14 UTC 2025
    - 454 bytes
    - Viewed (0)
  6. seekdir.txt

    =over =item seekdir DIRHANDLE,POS X<seekdir> Sets the current position for the L<C<readdir>|/readdir DIRHANDLE> routine on DIRHANDLE. POS must be a value returned by L<C<telldir>|/telldir DIRHANDLE...
    perldoc.perl.org/functions/seekdir.txt
    Registered: Thu Jun 05 14:40:50 UTC 2025
    - 354 bytes
    - Viewed (0)
  7. shmget.txt

    =over =item shmget KEY,SIZE,FLAGS X<shmget> Calls the System V IPC function shmget. Returns the shared memory segment id, or L<C<undef>|/undef EXPR> on error. See also L<perlipc/"SysV IPC"> and the...
    perldoc.perl.org/functions/shmget.txt
    Registered: Thu Jun 05 17:18:48 UTC 2025
    - 293 bytes
    - Viewed (0)
  8. formline.txt

    =over =item formline PICTURE,LIST X<formline> This is an internal function used by L<C<format>|/format>s, though you may call it, too. It formats (see L<perlform>) a list of values according to the...
    perldoc.perl.org/functions/formline.txt
    Registered: Fri Jun 06 00:17:19 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  9. scalar.txt

    =over =item scalar EXPR X<scalar> X<context> Forces EXPR to be interpreted in scalar context and returns the value of EXPR. my @counts = ( scalar @a, scalar @b, scalar @c ); There is no equivalent ...
    perldoc.perl.org/functions/scalar.txt
    Registered: Fri Jun 06 00:29:48 UTC 2025
    - 1K bytes
    - Viewed (0)
  10. pipe.txt

    =over =item pipe READHANDLE,WRITEHANDLE X<pipe> Opens a pair of connected pipes like the corresponding system call. Note that if you set up a loop of piped processes, deadlock can occur unless you ...
    perldoc.perl.org/functions/pipe.txt
    Registered: Thu Jun 05 21:40:41 UTC 2025
    - 831 bytes
    - Viewed (0)
Back to top