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