[linux-audio-dev] Behringer firmware update

Pedro Lopez-Cabanillas pedro.lopez.cabanillas at gmail.com
Fri Aug 26 17:54:33 UTC 2005


> Now, what would an amidi command look like that guarantees to update
> each and every midi-device found with said sysex file?

amidiall.sh

----CUT----
#!/bin/bash
CMD=$(which amidi)
PORTLIST=$($CMD -l|awk '/^hw:/ { print $1 }')
for P in $PORTLIST; do
        echo "$CMD --port=$P $*"
        $CMD --port=$P $*
done
----CUT----

Usage:

	$ amidiall -s myfile.syx

Regards,
Pedro



More information about the Linux-audio-dev mailing list