mirror of
https://github.com/nasa/trick.git
synced 2024-12-29 17:38:54 +00:00
12 lines
261 B
Plaintext
12 lines
261 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
TRICK_HOST_CPU=`${TRICK_HOME}/bin/gte TRICK_HOST_CPU`
|
||
|
TRK2CSV="${TRICK_HOME}/trick_source/data_products/Apps/Trk2csv/object_${TRICK_HOST_CPU}/trk2csv"
|
||
|
|
||
|
if [ -f ${TRK2CSV} ] ; then
|
||
|
${TRK2CSV} $@
|
||
|
else
|
||
|
echo "${TRK2CSV} has not been built"
|
||
|
fi
|
||
|
|