mirror of
https://github.com/berthubert/galmon.git
synced 2026-05-15 13:46:55 -04:00
-N saves bandwidth and server load, only downloads when there is a new TLE available --progress=dot:binary makes output more script friendly
5 lines
156 B
Bash
Executable file
5 lines
156 B
Bash
Executable file
#!/bin/sh
|
|
for a in galileo gps-ops beidou glo-ops active
|
|
do
|
|
wget -N --progress=dot:binary --backups=1 https://www.celestrak.com/NORAD/elements/$a.txt
|
|
done
|