Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 141 - 150 of 1,346 for label:perl (0.02 sec)

  1. msgctl.txt

    =over =item msgctl ID,CMD,ARG X<msgctl> Calls the System V IPC function L<msgctl(2)>. You'll probably have to say use IPC::SysV; first to get the correct constant definitions. If CMD is C<IPC_STAT>...
    perldoc.perl.org/functions/msgctl.txt
    Registered: Sat Jan 17 21:52:53 UTC 2026
    - 616 bytes
    - Viewed (0)
  2. gmtime.txt

    =over =item gmtime EXPR X<gmtime> X<UTC> X<Greenwich> =item gmtime Works just like L<C<localtime>|/localtime EXPR>, but the returned values are localized for the standard Greenwich time zone. Note:...
    perldoc.perl.org/functions/gmtime.txt
    Registered: Sun Jan 18 00:14:46 UTC 2026
    - 379 bytes
    - Viewed (0)
  3. untie.txt

    =over =item untie VARIABLE X<untie> Breaks the binding between a variable and a package. (See L<tie|/tie VARIABLE,CLASSNAME,LIST>.) Has no effect if the variable is not tied. =back 183
    perldoc.perl.org/functions/untie.txt
    Registered: Sat Jan 17 21:14:52 UTC 2026
    - 183 bytes
    - Viewed (0)
  4. kill.txt

    =over =item kill SIGNAL, LIST =item kill SIGNAL X<kill> X<signal> Sends a signal to a list of processes. Returns the number of arguments that were successfully used to signal (which is not necessar...
    perldoc.perl.org/functions/kill.txt
    Registered: Sat Jan 17 20:01:13 UTC 2026
    - 2.7K bytes
    - Viewed (0)
  5. syswrite.txt

    =over =item syswrite FILEHANDLE,SCALAR,LENGTH,OFFSET X<syswrite> =item syswrite FILEHANDLE,SCALAR,LENGTH =item syswrite FILEHANDLE,SCALAR Attempts to write LENGTH bytes of data from variable SCALAR...
    perldoc.perl.org/functions/syswrite.txt
    Registered: Sat Jan 17 16:53:22 UTC 2026
    - 1.7K bytes
    - Viewed (0)
  6. shift.txt

    =over =item shift ARRAY X<shift> =item shift Removes and returns the B<first> element of an array. This shortens the array by one and moves everything down. my @arr = ('cat', 'dog'); my $item = shi...
    perldoc.perl.org/functions/shift.txt
    Registered: Sat Jan 17 19:08:55 UTC 2026
    - 1.1K bytes
    - Viewed (0)
  7. prototype.txt

    =over =item prototype FUNCTION X<prototype> =item prototype Returns the prototype of a function as a string (or L<C<undef>|/undef EXPR> if the function has no prototype). FUNCTION is a reference to...
    perldoc.perl.org/functions/prototype.txt
    Registered: Sat Jan 17 17:37:24 UTC 2026
    - 722 bytes
    - Viewed (0)
  8. lstat.txt

    =over =item lstat FILEHANDLE X<lstat> =item lstat EXPR =item lstat DIRHANDLE =item lstat Does the same thing as the L<C<stat>|/stat FILEHANDLE> function (including setting the special C<_> filehand...
    perldoc.perl.org/functions/lstat.txt
    Registered: Sat Jan 17 20:44:33 UTC 2026
    - 573 bytes
    - Viewed (0)
  9. __LINE__.txt

    =over =item __LINE__ X<__LINE__> A special token that compiles to the current line number. It can be altered by the mechanism described at L<perlsyn/"Plain Old Comments (Not!)">. =back 187
    perldoc.perl.org/functions/__LINE__.txt
    Registered: Sat Jan 17 14:58:52 UTC 2026
    - 187 bytes
    - Viewed (0)
  10. no.txt

    =over =item no MODULE VERSION LIST X<no declarations> X<unimporting> =item no MODULE VERSION =item no MODULE LIST =item no MODULE =item no VERSION See the L<C<use>|/use Module VERSION LIST> functio...
    perldoc.perl.org/functions/no.txt
    Registered: Sat Jan 17 11:04:11 UTC 2026
    - 244 bytes
    - Viewed (0)
Back to top