Root/usrp/doall

Source at commit 873f80cb4dac00800826958f9869ec55dbd9e91c created 10 years 7 months ago.
By Werner Almesberger, tools/atrf-txrx/atrf-txrx.c: option -q becomes "quick" and uses aggressive polling
1#!/bin/bash -x
2
3usage()
4{
5    echo "usage: $0 [evscan-opt ... --] [plscan-opt ...] 'file-glob'" 1>&2
6    exit 1
7}
8
9
10[ "$1" ] || usage
11evscan_opts=
12opts=
13while [ "$2" ]; do
14    if [ "$1" = -- ]; then
15    evscan_opts=$opts
16    opts=
17    else
18    opts="$opts $1"
19    fi
20    shift
21done
22a=
23for n in $1; do
24    a="$a `basename $n`=<(./evscan $evscan_opts $n)"
25done
26eval ./plscan $opts $a
27

Archive Download this file



interactive