After long hours of tipidpc, I was able to decide to go for 35mm.
I hope to get better pictures with this one!
I hope to get better pictures with this one!
<code>
#!/bin/sh
while [ 1 ]
do
MSG=`links -source http://www.tipidpc.com/ | sed -n '/Buys/,$ !p' | egrep "PHP|viewitem" | sed 's/[^>]*>//' | sed 's/<.*//' | tr -d "\n" | sed 's/Posts/\n/g'`
echo "$MSG"
X=`echo "$MSG" | grep -i "laptop"`
if [ -n "$X" ]
then
echo "emailing....."
echo $X | mail -s "subject" user@email.com
fi
sleep 30
clear
done
</code>