This commit is contained in:
Hekuran 2020-07-06 13:50:18 +02:00 committed by GitHub
parent cdc1772e65
commit e52b402dc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ echo "$( grep Sunrise $sundata | grep -o "[0-9]*°" )" >> $sunfile
echo "\n🌇 Sunset" >> $sunfile echo "\n🌇 Sunset" >> $sunfile
echo "$( grep Sunset $sundata | grep -o "[[:digit:]]""[[:digit:]]":"[[:digit:]]""[[:digit:]]" )" >> $sunfile echo "$( grep Sunset $sundata | grep -o "[[:digit:]]""[[:digit:]]":"[[:digit:]]""[[:digit:]]" )" >> $sunfile
echo "$( grep Sunset $sundata | grep -o "direction.\{10\}" | sed 's/direction // ; s|">.</||' )" >> $sunfile echo "$( grep Sunset $sundata | grep -o "direction.\{10\}" | sed 's/direction // ; s|">.<*||' )" >> $sunfile
echo "$( grep Sunset $sundata | grep -o "[0-9]*°" )" >> $sunfile echo "$( grep Sunset $sundata | grep -o "[0-9]*°" )" >> $sunfile
} }