Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 201 - 210 of 335 for timestamp:[now/d-1d TO *] (0.06 sec)

  1. chown.txt

    =over =item chown LIST X<chown> X<owner> X<user> X<group> Changes the owner (and group) of a list of files. The first two elements of the list must be the I<numeric> uid and gid, in that order. A v...
    perldoc.perl.org/functions/chown.txt
    Registered: Wed Nov 20 19:36:55 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. oct.txt

    =over =item oct EXPR X<oct> X<octal> X<hex> X<hexadecimal> X<binary> X<bin> =item oct Interprets EXPR as an octal string and returns the corresponding value. An octal string consists of octal digit...
    perldoc.perl.org/functions/oct.txt
    Registered: Wed Nov 20 11:54:23 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. printf.txt

    =over =item printf FILEHANDLE FORMAT, LIST X<printf> =item printf FILEHANDLE =item printf FORMAT, LIST =item printf Equivalent to C<print FILEHANDLE sprintf(FORMAT, LIST)>, except that L<C<$\>|perl...
    perldoc.perl.org/functions/printf.txt
    Registered: Wed Nov 20 19:23:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. tell.txt

    =over =item tell FILEHANDLE X<tell> =item tell Returns the current position I<in bytes> for FILEHANDLE, or -1 on error. FILEHANDLE may be an expression whose value gives the name of the actual file...
    perldoc.perl.org/functions/tell.txt
    Registered: Wed Nov 20 19:30:24 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. uc.txt

    =over =item uc EXPR X<uc> X<uppercase> X<toupper> =item uc Returns an uppercased version of EXPR. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. my $str = uc("Perl is GREAT"); # "PERL IS GREAT" This...
    perldoc.perl.org/functions/uc.txt
    Registered: Wed Nov 20 19:47:15 UTC 2024
    - 599 bytes
    - Viewed (0)
  6. perl56delta.txt

    =head1 NAME perl56delta - what's new for perl v5.6.0 =head1 DESCRIPTION This document describes differences between the 5.005 release and the 5.6.0 release. =head1 Core Enhancements =head2 Interpre...
    perldoc.perl.org/perl56delta.txt
    Registered: Wed Nov 20 00:01:44 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  7. pack.txt

    =over =item pack TEMPLATE,LIST X<pack> Takes a LIST of values and converts it into a string using the rules given by the TEMPLATE. The resulting string is the concatenation of the converted values....
    perldoc.perl.org/functions/pack.txt
    Registered: Thu Nov 21 02:40:26 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. split.txt

    =over =item split /PATTERN/,EXPR,LIMIT X<split> =item split /PATTERN/,EXPR =item split /PATTERN/ =item split Splits the string EXPR into a list of strings and returns the list in list context, or t...
    perldoc.perl.org/functions/split.txt
    Registered: Wed Nov 20 21:57:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. each.txt

    =over =item each HASH X<each> X<hash, iterator> =item each ARRAY X<array, iterator> When called on a hash in list context, returns a 2-element list consisting of the key and value for the next elem...
    perldoc.perl.org/functions/each.txt
    Registered: Wed Nov 20 22:31:19 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. continue.txt

    =over =item continue BLOCK X<continue> =item continue When followed by a BLOCK, L<C<continue>|/continue BLOCK> is actually a flow control statement rather than a function. If there is a L<C<continu...
    perldoc.perl.org/functions/continue.txt
    Registered: Wed Nov 20 21:23:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top