Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 2451 - 2460 of about 10,000 for timestamp:[now/d-1M TO *] (0.15 sec)

  1. local.txt

    =over =item local EXPR X<local> You really probably want to be using L<C<my>|/my VARLIST> instead, because C<local> isn't what most people think of as "local". See L<perlsub/"Private Variables via ...
    perldoc.perl.org/functions/local.txt
    Registered: Wed Jul 09 06:05:22 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  2. fcntl.txt

    =over =item fcntl FILEHANDLE,FUNCTION,SCALAR X<fcntl> Implements the L<fcntl(2)> function. You'll probably have to say use Fcntl; first to get the correct constant definitions. Argument processing ...
    perldoc.perl.org/functions/fcntl.txt
    Registered: Wed Jul 09 01:22:56 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  3. undef.txt

    =over =item undef EXPR X<undef> X<undefine> =item undef Undefines the value of EXPR, which must be an lvalue. Use only on a scalar value, an array (using C<@>), a hash (using C<%>), a subroutine (u...
    perldoc.perl.org/functions/undef.txt
    Registered: Wed Jul 09 03:45:38 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  4. unlink.txt

    =over =item unlink LIST X<unlink> X<delete> X<remove> X<rm> X<del> =item unlink Deletes a list of files. On success, it returns the number of files it successfully deleted. On failure, it returns f...
    perldoc.perl.org/functions/unlink.txt
    Registered: Wed Jul 09 05:50:42 UTC 2025
    - 1008 bytes
    - Viewed (0)
  5. chdir.txt

    =over =item chdir EXPR X<chdir> X<cd> X<directory, change> =item chdir FILEHANDLE =item chdir DIRHANDLE =item chdir Changes the working directory to EXPR, if possible. If EXPR is omitted, changes t...
    perldoc.perl.org/functions/chdir.txt
    Registered: Wed Jul 09 02:54:33 UTC 2025
    - 739 bytes
    - Viewed (0)
  6. say.txt

    =over =item say FILEHANDLE LIST X<say> =item say FILEHANDLE =item say LIST =item say Just like L<C<print>|/print FILEHANDLE LIST>, but implicitly appends a newline at the end of the LIST instead of...
    perldoc.perl.org/functions/say.txt
    Registered: Wed Jul 09 03:20:20 UTC 2025
    - 686 bytes
    - Viewed (0)
  7. accept.txt

    =over =item accept NEWSOCKET,GENERICSOCKET X<accept> Accepts an incoming socket connect, just as L<accept(2)> does. Returns the packed address if it succeeded, false otherwise. See the example in L...
    perldoc.perl.org/functions/accept.txt
    Registered: Wed Jul 09 00:48:37 UTC 2025
    - 445 bytes
    - Viewed (0)
  8. semget.txt

    =over =item semget KEY,NSEMS,FLAGS X<semget> Calls the System V IPC function L<semget(2)>. Returns the semaphore id, or the undefined value on error. See also L<perlipc/"SysV IPC"> and the document...
    perldoc.perl.org/functions/semget.txt
    Registered: Wed Jul 09 03:36:42 UTC 2025
    - 325 bytes
    - Viewed (0)
  9. $_.txt

    =over =item $ARG =item $_ X<$_> X<$ARG> The default input and pattern-searching space. The following pairs are equivalent: while (<>) {...} # equivalent only in while! while (defined($_ = <>)) {......
    perldoc.perl.org/variables/$_.txt
    Registered: Mon Jul 14 03:25:43 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  10. $?.txt

    =over =item $CHILD_ERROR =item $? X<$?> X<$CHILD_ERROR> The status returned by the last pipe close, backtick (C<``>) command, successful call to C<wait()> or C<waitpid()>, or from the C<system()> o...
    perldoc.perl.org/variables/$?.txt
    Registered: Mon Jul 14 04:44:17 UTC 2025
    - 1.2K bytes
    - Viewed (0)
Back to top