Thread File::HomeDir und encoding
(7 answers)
Opened by Kuerbis at 2015-01-03 10:38
das ist merkwürdig, da eigentlich automatisch das richtige modul aufgerufen werden sollte. und der autor ist selbst windows-user.
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 if ( $IMPLEMENTED_BY ) { # Allow for custom HomeDir classes # Leave it as the existing value } elsif ( $^O eq 'MSWin32' ) { # All versions of Windows $IMPLEMENTED_BY = 'File::HomeDir::Windows'; ... sub my_home { $IMPLEMENTED_BY->my_home; } welche version nutzt du? Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |