Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 3391 - 3400 of 6,339 for content_length:[0 TO 9999] (0.35 sec)

  1. perlutil.txt

    =head1 NAME perlutil - utilities packaged with the Perl distribution =head1 DESCRIPTION Along with the Perl interpreter itself, the Perl distribution installs a range of utilities on your system. T...
    perldoc.perl.org/perlutil.txt
    Registered: Wed Nov 05 21:35:14 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  2. sysopen.txt

    =over =item sysopen FILEHANDLE,FILENAME,MODE X<sysopen> =item sysopen FILEHANDLE,FILENAME,MODE,PERMS Opens the file whose filename is given by FILENAME, and associates it with FILEHANDLE. If FILEHA...
    perldoc.perl.org/functions/sysopen.txt
    Registered: Thu Nov 06 20:32:18 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. goto.txt

    =over =item goto LABEL X<goto> X<jump> X<jmp> =item goto EXPR =item goto &NAME C<goto> transfers execution to a specified point in the program. Unlike a function call, execution does not return to ...
    perldoc.perl.org/functions/goto.txt
    Registered: Thu Nov 06 19:28:42 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  4. 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: Thu Nov 06 20:34:43 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  5. print.txt

    =over =item print FILEHANDLE LIST X<print> =item print FILEHANDLE =item print LIST =item print Prints a string or a list of strings. Returns true if successful. FILEHANDLE may be a scalar variable ...
    perldoc.perl.org/functions/print.txt
    Registered: Thu Nov 06 18:43:18 UTC 2025
    - 2K bytes
    - Viewed (0)
  6. redo.txt

    =over =item redo LABEL X<redo> =item redo EXPR =item redo The C<redo> command restarts the loop block without evaluating the conditional again. The L<C<continue>|/continue BLOCK> block, if any, is ...
    perldoc.perl.org/functions/redo.txt
    Registered: Thu Nov 06 18:11:40 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  7. dump.txt

    =over =item dump LABEL X<dump> X<core> X<undump> =item dump EXPR =item dump This function causes an immediate core dump. See also the B<-u> command-line switch in L<perlrun|perlrun/-u>, which does ...
    perldoc.perl.org/functions/dump.txt
    Registered: Thu Nov 06 20:57:13 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  8. symlink.txt

    =over =item symlink OLDFILE,NEWFILE X<symlink> X<link> X<symbolic link> X<link, symbolic> Creates a new filename symbolically linked to the old filename. Returns C<1> for success, C<0> otherwise. O...
    perldoc.perl.org/functions/symlink.txt
    Registered: Thu Nov 06 17:14:36 UTC 2025
    - 398 bytes
    - Viewed (0)
  9. link.txt

    =over =item link OLDFILE,NEWFILE X<link> Creates a new filename linked to the old filename. Returns true for success, false otherwise. Portability issues: L<perlport/link>. =back 183
    perldoc.perl.org/functions/link.txt
    Registered: Thu Nov 06 18:51:17 UTC 2025
    - 183 bytes
    - Viewed (0)
  10. die.txt

    =over =item die LIST X<die> X<throw> X<exception> X<raise> X<$@> X<abort> C<die> raises an exception. Inside an L<C<eval>|/eval EXPR> the exception is stuffed into L<C<$@>|perlvar/$@> and the L<C<e...
    perldoc.perl.org/functions/die.txt
    Registered: Thu Nov 06 13:14:56 UTC 2025
    - 5.8K bytes
    - Viewed (0)
Back to top