ostatnio z okazji zmiany pulpitu (


W każdym bądź razie, trzeba przejść do sedna

Kod: Zaznacz cały
#!/bin/bash
web=http://animecalendar.net/
dzien=$(date +%d)
#print lines between $dzien and $dzien+1
curl $web | sed -n "/>$dzien</,/>$(($dzien+1))</p" | \
#delete whitespace at beginning and ending of the line
sed 's/^[ \t]*//;s/[ \t]*$//' | \
#delete last line
sed '$d' | \
#strip file from html tags
sed -e 's#<[^>]*>##g' | \
#delete line with matching pattern=src
sed '/src/d' | \
#delete blank/empty lines
sed '/./!d' | \
#delete first two lines
sed '1,2d' | \
#add white line when pattern is matched
sed '/>/G' | \
#print only lines with more than 2 chars
sed -n '/^.\{2\}/p'
exit

Pod ciachem kryje się sam text, nic za co by się można było zaczepić, więc nie potrzebny jest w ogóle.Spice and Wolf II 00:00 TV Kanagawa " style="color: #fff; font-size:10px;" target="_blank" id="font_4873_3">Spice and Wolf II
Ep: 3
Sweet Blue Flowers Fumi Manjoume, an introverted... [ciach] ...other get through them.00:00 Fuji TV " style="color: #fff; font-size:10px;" target="_blank" id="font_4720_4">Sweet Blue Flowers
Ep: 4
Umi Monogatari ~Anata ga Ite Kureta Koto~ The story centers on Marin and Urin ... [ciach] ... by an enveloping darkness.00:00 CBC " style="color: #fff; font-size:10px;" target="_blank" id="font_5110_5">Umi Monogatari ~Anata ga Ite Kureta Koto~
Ep: 5
Umineko no Naku Koro ni Umineko no Naku Koro ni takes place ...[ciach] ... murdered.00:00 Chiba TV " style="color: #fff; font-size:10px;" target="_blank" id="font_4742_4">Umineko no Naku Koro ni
Ep: 4
W sumie to już chyba niedaleka droga


Kod: Zaznacz cały
Spice and Wolf II
Ep: 3
Sweet Blue Flowers
Ep: 4
Umi Monogatari ~Anata ga Ite Kureta Koto~
Ep: 5
Umineko no Naku Koro ni
Ep: 4
Byłbym wdzięczny jakby ktoś podrzucił pomysł lub wskazał mi chociaż kierunek
