mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
12 lines
259 B
Plaintext
12 lines
259 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
TRICK_HOST_CPU=`${TRICK_HOME}/bin/gte TRICK_HOST_CPU`
|
||
|
GXPLOT="${TRICK_HOME}/trick_source/data_products/DPX/APPS/GXPLOT/object_${TRICK_HOST_CPU}/gxplot"
|
||
|
|
||
|
if [ -f ${GXPLOT} ] ; then
|
||
|
${GXPLOT} $@
|
||
|
else
|
||
|
echo "${GXPLOT} has not been built"
|
||
|
fi
|
||
|
|