mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-16 23:51:32 +02:00
12 lines
162 B
Plaintext
12 lines
162 B
Plaintext
|
#!/bin/bash -x
|
||
|
opts=
|
||
|
while [ "$2" ]; do
|
||
|
opts="$opts $1"
|
||
|
shift
|
||
|
done
|
||
|
a=
|
||
|
for n in $1; do
|
||
|
a="$a `basename $n`=<(./evscan $n)"
|
||
|
done
|
||
|
eval ./plscan $opts $a
|