Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 761 - 770 of 1,302 for label:perl (0.03 sec)

  1. unshift.txt

    =over =item unshift ARRAY,LIST X<unshift> Add one or more elements to the B<beginning> of an array. This is the opposite of a L<C<shift>|/shift ARRAY>. my @animals = ("cat"); unshift(@animals, "mou...
    perldoc.perl.org/functions/unshift.txt
    Registered: Thu Nov 21 04:38:37 UTC 2024
    - 945 bytes
    - Viewed (0)
  2. 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 21 03:11:34 UTC 2024
    - 398 bytes
    - Viewed (0)
  3. 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 21 06:13:20 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. 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: Thu Nov 21 06:21:56 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. mkdir.txt

    =over =item mkdir FILENAME,MODE X<mkdir> X<md> X<directory, create> =item mkdir FILENAME =item mkdir Creates the directory specified by FILENAME, with permissions specified by MODE (as modified by ...
    perldoc.perl.org/functions/mkdir.txt
    Registered: Thu Nov 21 05:01:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. int.txt

    =over =item int EXPR X<int> X<integer> X<truncate> X<trunc> X<floor> =item int Returns the integer portion of EXPR. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. You should not use this function fo...
    perldoc.perl.org/functions/int.txt
    Registered: Thu Nov 21 05:39:44 UTC 2024
    - 760 bytes
    - Viewed (0)
  7. 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: Thu Nov 21 05:20:12 UTC 2024
    - 573 bytes
    - Viewed (0)
  8. 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: Thu Nov 21 10:12:46 UTC 2024
    - 356 bytes
    - Viewed (0)
  9. __FILE__.txt

    =over =item __FILE__ X<__FILE__> A special token that returns the name of the file in which it occurs. It can be altered by the mechanism described at L<perlsyn/"Plain Old Comments (Not!)">. =back 199
    perldoc.perl.org/functions/__FILE__.txt
    Registered: Thu Nov 21 05:57:59 UTC 2024
    - 199 bytes
    - Viewed (0)
  10. 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 21 04:59:35 UTC 2024
    - 183 bytes
    - Viewed (0)
Back to top