| 
 
 NAMEUser - API for locating user information regardless of OS SYNOPSIS  use User;
  my $cfg = Config::IniFiles->new
        (
          -file    => sprintf("%s/%s", User->Home, ".ncfg"),
          -default => 'Default'
        );
  print "Your login is ", User->Login, "\n";
DESCRIPTIONThis module is allows applications to retrieve per-user characteristics. METHODS
 SEE ALSOFile::HomeDir seems to be a very well-done update of the same concept as this module. COPYRIGHT INFOCopyright: Copyright (c) 2002-2010 Terrence Brannon. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. License: GPL, Artistic, available in the Debian Linux Distribution at /usr/share/common-licenses/{GPL,Artistic} AUTHORT.M. Brannon, tbone@cpan.org I am grateful for additions by Rob Napier and Malcom Nooning. ACKNOWLEDGEMENTSI would like to offer profuse thanks to my fellow perl monk at www.perlmonks.org, the_slycer, who told me where HOME could be found on Windows machines. I would also like to thank Bob Armstrong for providing me with the text of the copyright notice and for including this in the Debian Linux distribution. perl(1). 
 
  |