'Trasforma un file di testo creato con un normale editor di testi per PC 'in un file di testo con caratteristiche Unix, creato con un editor di testi 'per Unix: la differenza sta nel fatto che il simbolo di ritorno a capo nei PC 'Š la stringa 0x0D 0x0A, mentre nei sistemi Unix Š semplicemente 0x0A. IF LEN(COMMAND$) = 0 THEN END OPEN COMMAND$ FOR INPUT AS #1 OPEN "PC2Unix.Txt" FOR BINARY AS #2 DO WHILE NOT EOF(1) LINE INPUT #1, Each$ Each$ = Each$ + CHR$(&HA) PUT #2, , Each$ LOOP CLOSE CLOSE