Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 151 - 160 of 315 for timestamp:[now/d-1d TO *] (0.1 sec)

  1. eof.txt

    =over =item eof FILEHANDLE X<eof> X<end of file> X<end-of-file> =item eof () =item eof Returns 1 if the next read on FILEHANDLE will return end of file I<or> if FILEHANDLE is not open. FILEHANDLE m...
    perldoc.perl.org/functions/eof.txt
    Registered: Thu Nov 21 03:47:17 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. 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: Thu Nov 21 03:40:17 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. last.txt

    =over =item last LABEL X<last> X<break> =item last EXPR =item last The L<C<last>|/last LABEL> command is like the C<break> statement in C (as used in loops); it immediately exits the loop in questi...
    perldoc.perl.org/functions/last.txt
    Registered: Thu Nov 21 04:10:28 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. chmod.txt

    =over =item chmod LIST X<chmod> X<permission> X<mode> Changes the permissions of a list of files. The first element of the list must be the numeric mode, which should probably be an octal number, a...
    perldoc.perl.org/functions/chmod.txt
    Registered: Thu Nov 21 03:27:24 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top