I think I cut out the creation of the empty file "CON". It seems curl clses the file if it is too large after the pipe is done reading it or ssomthing. Anyway, this should take care of it.
This commit is contained in:
parent
d3e5d6f973
commit
1bbe334782
@ -360,9 +360,9 @@ if [ "$speakTime" == "true" ] ; then
|
||||
#Add temperature if zipcode is set
|
||||
if [ -n "$zipcode" ] ; then
|
||||
if [ "$torify" == "true" ] ; then
|
||||
temperature="$(torify curl -s "http://wttr.in/$zipcode?T" | grep -m 1 -Eo -e '-?[[:digit:]].*[CF]' | cut -d ' ' -f1 | sed 's/.*-//')"
|
||||
temperature="$(torify curl -s "http://wttr.in/$zipcode?T0" | grep -m 1 -Eo -e '-?[[:digit:]].*[CF]' | cut -d ' ' -f1 | sed 's/.*-//')"
|
||||
else
|
||||
temperature="$(curl -s "http://wttr.in/$zipcode?T" | grep -m 1 -Eo -e '-?[[:digit:]].*[CF]' | cut -d ' ' -f1 | sed 's/.*-//')"
|
||||
temperature="$(curl -s "http://wttr.in/$zipcode?T0" | grep -m 1 -Eo -e '-?[[:digit:]].*[CF]' | cut -d ' ' -f1 | sed 's/.*-//')"
|
||||
fi
|
||||
if [ -n "$temperature" ] ; then
|
||||
if [ "$format" = "24" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user