mirror of
https://github.com/cosinekitty/astronomy.git
synced 2025-12-26 00:59:08 -05:00
13 lines
287 B
Bash
Executable File
13 lines
287 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rm -f jpl_summary.txt
|
|
for file in horizons/*.txt; do
|
|
node jpl_horizons_check.js $file > summary.txt || exit $?
|
|
cat summary.txt | tee -a jpl_summary.txt
|
|
rm -f summary.txt
|
|
done
|
|
|
|
node jpl_horizons_check tally jpl_summary.txt || exit $?
|
|
rm -f jpl_summary.txt
|
|
exit 0
|