Help for this page

Select Code to Download


  1. or download this
    @username = map scalar getpwuid($_), @uid;
    
  2. or download this
    @year = map (localtime $_)[5], @timestamp;
    # "Not enough arguments for map at line XY"
    
  3. or download this
    print do { (localtime $timestamp)[5] };
    
  4. or download this
    print +(localtime $timestamp)[5];