mirror of
https://github.com/JHUAPL/kvspool.git
synced 2026-01-08 22:27:56 -05:00
13 lines
280 B
Bash
Executable File
13 lines
280 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SPW=../../utils/kvsp-spw
|
|
export PYTHONPATH="../build/lib.linux-i686-2.6"
|
|
|
|
# sanity checks
|
|
if [ ! -d spool ]; then mkdir spool; fi
|
|
if [ ! -x ${SPW} ]; then echo "script requires ${SPW}"; exit -1; fi
|
|
|
|
# write out a frame and read it from python
|
|
${SPW} spool
|
|
./read.py
|