in reply to Win32::Daemon et al
Update Just noticed that if your current location was the desktop, Perl conveniently searches it for the module you're trying to use. i.e. You only need to add the path of the module to @INC if you're going to call the script from another location. Eg. C:\temp>BEGIN { push @INC, 'C:/documents and settings/user/desktop'; } ### and later use Win32::Daemon; # etc etc # etc
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Win32::Daemon et al
by OzVegan (Acolyte) on Sep 14, 2009 at 04:00 UTC |