in reply to Re: Re: Re: Re: Portability question: Is there something like '#ifdef' in Perl?
in thread Portability question: Is there something like '#ifdef' in Perl?
You misunderstand. My use of the word "command" was simply as a placeholder for whatever command you are using system to invoke, ... NOT a reference to the old 16-bit windows shell, "command.com". Ie.
system( "command \\path\\with spaces\\file" );
could be
system( "notepad \\path\\with spaces\\file" );
or
system( "xcopy \\path\\with spaces\\file" );
The same applies to all other uses of the text 'command' in the original post.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Re: Re: Portability question: Is there something like '#ifdef' in Perl?
by sureshr (Beadle) on Sep 30, 2003 at 21:05 UTC | |
by BrowserUk (Patriarch) on Sep 30, 2003 at 21:26 UTC | |
by sureshr (Beadle) on Oct 01, 2003 at 20:40 UTC | |
by PodMaster (Abbot) on Oct 01, 2003 at 21:02 UTC |