本文目的在于分享,请善用本文提供的代码。- @echo off
- cd.>op.txt
- for /l %%i in (1,1,12) do (
- wget -q -O - "http://bbs.chinaunix.net/forumdisplay.php?fid=24&filter=digest&page=%%i" | sed "/viewthread/!d; s/.*tid=//g; s/\&.*//g" | sed -n "G; s/\n/&&/; /^\([ -~]*\n\).*\n\1/d; s/\n//; h; P" | sed "s/^/http:\/\/bbs.chinaunix.net\/viewthread.php\?action=printable\&tid=&/g" >> op.txt
- )
- exit
复制代码 得到的列表已经包含全部的精华帖。用wget下载就好了。 |