Problem: I can copy a file from a macro on UNIX with the command:$!System cp aaa bbbBut I get an error message when I try to copy a file with a similar command on Windows:$!System copy aaa bbb
Solution: The problem is that copy is not a Windows system command it is a Dos command. Option 1:$!System command.com /c copy aaa bbbOption 2:1. Create a batch file named copy.bat with this command:copy $1 $22. Place copy.bat in your Tecplot start-up directory and using this macro command:$!SYSTEM copy.bat aaa bbb




