mirror of
https://github.com/fruit-bat/pico-zxspectrum.git
synced 2025-04-19 00:04:01 +03:00
6 lines
125 B
Bash
Executable File
6 lines
125 B
Bash
Executable File
#!/bin/bash
|
|
mkdir -p temp_uf2
|
|
rm -rf temp_uf2/*
|
|
find build-* -name '*.uf2' -execdir bash -c "cat {} >> $PWD/temp_uf2/{}" \;
|
|
|