// // GETUNIX.VDM C.Z. 20.01.1999 // // Lädt eine UNIX-Datei per rcp auf den PC und editiert sie dann // Auswahl der Datei durch eine Liste: (z.B.) // ebzentw.root:/home/bozi/.profile // ... BoL RCB(89,CP,EOL_POS) RC(88, @89) // Datei merken #89=Win_Num win_delete('H') win_reserved('H',1,TOP+NOBORDER) WS('H') Win_Color(15,15,EXTRA) Win_Clear() RT(89) Win_Color(112,112,EXTRA) WS(#89) RS(89,"RCP -a ", INSERT) RS(89," \tmp\unixfile", APPEND) #88=File_Check("c:\tmp\unixfile") if(#88!=-1){ BS(#88) BQ(OK) } system("attrib -r c:\tmp\unixfile", DOS+OK+SIMPLE) system("del c:\tmp\unixfile", DOS+OK+SIMPLE) system("|@(89)", DOS+OK+SIMPLE) File_Open("c:\tmp\unixfile")