All good decided to learn how to do what i wanted without using shell to do a file copy
*** anychance this routine could be tested under windows.....
LABEL:- romtoram: (copy original data to files to run in my game during play) works %100 percent on linux
n1$ = ".\bm1\MAP.": n2$ = ".\bm2\MAP.": file$ = "000001002003004005006007008009010011"
FOR i = 1 TO 12
io$ = MID$(file$, i * 3 - 2, 3): OPEN n1$ + io$ FOR INPUT AS #1: OPEN n2$ + io$ FOR OUTPUT AS #2
DO UNTIL EOF(1)
INPUT #1, b: PRINT #2, b;
LOOP: CLOSE #1: CLOSE #2
NEXT i
RETURN
this uses sub folders in linux and hoping same for windows