Next | Program Repair Shop | 96 |
`$ENV{ComSpec} /c copy /b $copy_source_node $copy_target_node`;
`...` means to collect the output of a command
If you don't want the output, system is more appropriate:
system("$ENV{ComSpec} /c copy /b $copy_source_node $copy_target_node");
Next | Copyright © 2002 M. J. Dominus |