Re: [linux-audio-dev] Behringer firmware update

From: Pedro Lopez-Cabanillas <pedro.lopez.cabanillas@email-addr-hidden>
Date: Fri Aug 26 2005 - 20:54:33 EEST

> 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
Received on Sat Aug 27 00:15:07 2005

This archive was generated by hypermail 2.1.8 : Sat Aug 27 2005 - 00:15:07 EEST