Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 3111 - 3120 of 3,197 for filetype:txt (0.06 sec)

  1. 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: Thu Nov 28 04:04:38 UTC 2024
    - 428 bytes
    - Viewed (0)
  2. getlogin.txt

    =over =item getlogin X<getlogin> X<login> This implements the C library function of the same name, which on most systems returns the current login from F</etc/utmp>, if any. If it returns the empty...
    perldoc.perl.org/functions/getlogin.txt
    Registered: Thu Nov 28 07:39:34 UTC 2024
    - 462 bytes
    - Viewed (0)
  3. 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 28 03:31:48 UTC 2024
    - 398 bytes
    - Viewed (0)
  4. 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 28 04:18:58 UTC 2024
    - 356 bytes
    - Viewed (0)
  5. 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 28 03:10:26 UTC 2024
    - 183 bytes
    - Viewed (0)
  6. values.txt

    =over =item values HASH X<values> =item values ARRAY In list context, returns a list consisting of all the values of the named hash. In Perl 5.12 or later only, will also return a list of the value...
    perldoc.perl.org/functions/values.txt
    Registered: Tue Nov 26 19:04:33 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. syscall.txt

    =over =item syscall NUMBER, LIST X<syscall> X<system call> Calls the system call specified as the first element of the list, passing the remaining elements as arguments to the system call. If unimp...
    perldoc.perl.org/functions/syscall.txt
    Registered: Tue Nov 26 23:08:33 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. 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: Tue Nov 26 22:18:00 UTC 2024
    - 945 bytes
    - Viewed (0)
  9. 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: Tue Nov 26 23:01:30 UTC 2024
    - 760 bytes
    - Viewed (0)
  10. pop.txt

    =over =item pop ARRAY X<pop> X<stack> =item pop Removes and returns the B<last> element of the array, shortening the array by one element. my @arr = ('cat', 'dog', 'mouse'); my $item = pop(@arr); #...
    perldoc.perl.org/functions/pop.txt
    Registered: Tue Nov 26 21:05:52 UTC 2024
    - 902 bytes
    - Viewed (0)
Back to top