1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-07-01 04:43:15 +03:00
ben-wpan/usrp/doall

27 lines
373 B
Plaintext
Raw Normal View History

#!/bin/bash -x
usage()
{
echo "usage: $0 [evscan-opt ... --] [plscan-opt ...] 'file-glob'" 1>&2
exit 1
}
[ "$1" ] || usage
evscan_opts=
opts=
while [ "$2" ]; do
if [ "$1" = -- ]; then
evscan_opts=$opts
opts=
else
opts="$opts $1"
fi
shift
done
a=
for n in $1; do
a="$a `basename $n`=<(./evscan $evscan_opts $n)"
done
eval ./plscan $opts $a