Need help on parsing string

for i in `cat list`;do lol=`curl -m 2 -s ${i} | grep 'class=info' | cut -d '>' -f14 | cut -d '<' -f1 | sed '/^$/d'`; if [ ! "$lol" == "" ];then echo "$i,$lol" >> dirty; echo "$i,$lol";fi; done

cut: you must specify a list of bytes, characters, or fields
Try `cut --help' for more information.

it gave me that error messege but it did work for me in a another server. anyone?

---------- Post updated at 03:28 AM ---------- Previous update was at 03:08 AM ----------

fixed*