#!/bin/bash
sfile="fblist.txt"
echo "" > gblinks.html
echo "" > gbaccept.html
while read line
do
# http://www.facebook.com/profile.php?id=123123
newline='http://apps.facebook.com/gangsterbattle/?re='${line:39}'&oi=3'
acceptline='http://apps.facebook.com/gangsterbattle/family.php?op=gangster_invite&refuid='${line:39}'&action=accept'
# echo ${line:39}
echo $newline
echo "<a href=\"$newline\" target=\"_blank\">$newline</a><br>" >> gblinks.html
echo "<a href=\"$acceptline\" target=\"_blank\">$acceptline</a><br>" >> gbaccept.html
done < $sfile
# http://apps.facebook.com/gangsterbattle/?re=121341&oi=3
# http://apps.facebook.com/gangsterbattle/family.php?op=gangster_invite&refuid=123123&action=accept
that's all folks
Tiada ulasan:
Catat Ulasan
Nota: Hanya ahli blog ini sahaja yang boleh mencatat ulasan.