mirror of
https://github.com/Pecusx/jataricart.git
synced 2026-05-20 22:33:22 +02:00
10 lines
155 B
Bash
Executable File
10 lines
155 B
Bash
Executable File
|
|
for i in *; do
|
|
! [ -f "$i/macroflashname.asx" ] && continue
|
|
echo GENERATE $i ...
|
|
./makeflashwrite.sh "$i" noprocess
|
|
echo "press RETURN"
|
|
read
|
|
done
|
|
|