понедельник, 30 января 2017 г.

погода ветер

#!/bin/bash

# spb
#http://www.accuweather.com/ru/ru/saint-petersburg/295212/current-weather/295212
URL1='http://www.accuweather.com/ru/ru/saint-petersburg/295212/current-weather/295212'

wget -q -O- "$URL1" >  /tmp/pogoda_spb_veter

# tail -n 1
# sed 's/^.//'
# sed 's/..$//'
VETER1=$(cat /tmp/pogoda_spb_veter | grep "li class" | grep "strong" | tail -n 1 | \
 sed 's/^...................................................//' | \
 sed 's/...............$//')
echo "$VETER1" > /tmp/pogoda_spb_veter1

Комментариев нет:

Отправить комментарий

h265.sh

#!/bin/bash file="../mp4" if [ -d $file ]; then         echo "  Директория существует :-) "         for i in *.mp4; do f...