Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 3571 - 3580 of 6,561 for content_length:[0 TO 9999] (0.07 sec)

  1. redo.txt

    =over =item redo LABEL X<redo> =item redo EXPR =item redo The L<C<redo>|/redo LABEL> command restarts the loop block without evaluating the conditional again. The L<C<continue>|/continue BLOCK> blo...
    perldoc.perl.org/functions/redo.txt
    Registered: Tue Feb 18 10:40:37 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  2. last.txt

    =over =item last LABEL X<last> X<break> =item last EXPR =item last The L<C<last>|/last LABEL> command is like the C<break> statement in C (as used in loops); it immediately exits the loop in questi...
    perldoc.perl.org/functions/last.txt
    Registered: Tue Feb 18 09:42:58 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  3. truncate.txt

    =over =item truncate FILEHANDLE,LENGTH X<truncate> =item truncate EXPR,LENGTH Truncates the file opened on FILEHANDLE, or named by EXPR, to the specified length. Raises an exception if truncate isn...
    perldoc.perl.org/functions/truncate.txt
    Registered: Tue Feb 18 10:11:29 UTC 2025
    - 573 bytes
    - Viewed (0)
  4. getppid.txt

    =over =item getppid X<getppid> X<parent> X<pid> Returns the process id of the parent process. Note for Linux users: Between v5.8.1 and v5.16.0 Perl would work around non-POSIX thread semantics the ...
    perldoc.perl.org/functions/getppid.txt
    Registered: Tue Feb 18 11:09:53 UTC 2025
    - 428 bytes
    - Viewed (0)
  5. getpeername.txt

    =over =item getpeername SOCKET X<getpeername> X<peer> Returns the packed sockaddr address of the other end of the SOCKET connection. use Socket; my $hersockaddr = getpeername($sock); my ($port, $ia...
    perldoc.perl.org/functions/getpeername.txt
    Registered: Tue Feb 18 07:48:23 UTC 2025
    - 356 bytes
    - Viewed (0)
  6. stat.txt

    =over =item stat FILEHANDLE X<stat> X<file, status> X<ctime> =item stat EXPR =item stat DIRHANDLE =item stat Returns a 13-element list giving the status info for a file, either the file opened via ...
    perldoc.perl.org/functions/stat.txt
    Registered: Tue Feb 18 15:38:45 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  7. goto.txt

    =over =item goto LABEL X<goto> X<jump> X<jmp> =item goto EXPR =item goto &NAME The C<goto LABEL> form finds the statement labeled with LABEL and resumes execution there. It can't be used to get out...
    perldoc.perl.org/functions/goto.txt
    Registered: Tue Feb 18 16:38:40 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  8. umask.txt

    =over =item umask EXPR X<umask> =item umask Sets the umask for the process to EXPR and returns the previous value. If EXPR is omitted, merely returns the current umask. The Unix permission C<rwxr-x...
    perldoc.perl.org/functions/umask.txt
    Registered: Tue Feb 18 12:12:33 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  9. waitpid.txt

    =over =item waitpid PID,FLAGS X<waitpid> Waits for a particular child process to terminate and returns the pid of the deceased process, or C<-1> if there is no such child process. A non-blocking wa...
    perldoc.perl.org/functions/waitpid.txt
    Registered: Tue Feb 18 14:15:12 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  10. reset.txt

    =over =item reset EXPR X<reset> =item reset Generally used in a L<C<continue>|/continue BLOCK> block at the end of a loop to clear variables and reset C<m?pattern?> searches so that they work again...
    perldoc.perl.org/functions/reset.txt
    Registered: Tue Feb 18 13:23:43 UTC 2025
    - 1.1K bytes
    - Viewed (0)
Back to top