in reply to Re: How let Inline tell space in path?
in thread How let Inline tell space in path?

Which highlights how system needs to be fixed on Win32 so that

my $cc= 'c:/opensource tools/gcc/gcc.exe'; my $flag= "-lIcorice"; my $file= 'c:/dockets and filings/case.c'; system( $cc, $flag, $file );

puts the needed quotes around the first and third "arguments" when constructing the command line to be used. Well, at least it highlights that to me.

- tye