in reply to embedded spaces in paths and system()

send an array to system. (BTW, it's in the doc... see system)

my @args = ( "compile.exe", "my silly windows directory", "file" ); my $rc = system( @args );

~Particle