From 214fa76dff0129af4c1f106fe0a761903958b9ca Mon Sep 17 00:00:00 2001 From: nousian <37895471+nousian@users.noreply.github.com> Date: Sat, 4 Jan 2020 12:21:15 +0200 Subject: [PATCH] Update update-tles -N saves bandwidth and server load, only downloads when there is a new TLE available --progress=dot:binary makes output more script friendly --- update-tles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update-tles b/update-tles index c0eba9b..0ded0c9 100755 --- a/update-tles +++ b/update-tles @@ -1,5 +1,5 @@ #!/bin/sh for a in galileo gps-ops beidou glo-ops active do - wget --backups=1 https://www.celestrak.com/NORAD/elements/$a.txt + wget -N --progress=dot:binary --backups=1 https://www.celestrak.com/NORAD/elements/$a.txt done