mirror of
https://github.com/irmen/prog8.git
synced 2024-11-03 13:07:54 +00:00
7 lines
161 B
Bash
Executable File
7 lines
161 B
Bash
Executable File
#!/bin/sh
|
|
c1541 -format examples,01 d64 examples.d64
|
|
for filename in *.prg; do
|
|
c1541 examples.d64 -write $filename ${filename%.*}
|
|
done
|
|
c1541 examples.d64 -dir
|