⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 robot.sh

📁 www工具包. 这是W3C官方支持的www支撑库. 其中提供通用目的的客户端的WebAPI: complete HTTP/1.1 (with caching, pipelining, PUT, POS
💻 SH
字号:
#!/bin/shif [ $# -lt 3 ]then	echo "A simple example of how the libwww robot can be used"	echo "For a full description, see"	echo	echo "        http://www.w3.org/Robot/User/CommandLine.html"	echo	echo "Usage:	$0 RootURI ImageRootURI LogPrefix [ flags ]"	echo        echo "where"	echo "        RootURI       is the URI prefix for links, for example http://www.w3.org/Robot/"	echo "        ImageRootURI  is the URI prefix for inlined images, for example http://www.w3.org"	echo "        LogPrefix     is the prefix for log files, for example robot"	echo "        flags         are any additional command line flags, for example -vp"	echo	echo "See"	echo "        http://www.w3.org/Robot/"	echo	echo "for more information"	exit 1fiROOT=$1IMGROOT=$2LOG=$3FLAGS=$4ROBOT=./webbot${ROBOT} ${FLAGS} -q -ss -n -depth 99 \-exclude "/ArchiveBrowser/|/History/|/member/|/team/" \-check "\.gz$|\.tar$|\.tgz$|\.Z$|\.zip$|\.ZIP$|\.exe$|\.EXE$|\.ps$|\.doc$|\.pdf$|\.xplot$|\.java$|\.c$|\.h$|\.txt$|\.ppt$|\.gif$|\.GIF$|\.tiff$|\.png$|\.PNG$|\.jpeg$|\.jpg$|\.JPE$" \-prefix ${ROOT} \-img -imgprefix ${IMGROOT} \-l ${LOG}-log-clf.txt \-alt ${LOG}-log-alt.txt \-hit ${LOG}-log-hit.txt \-rellog ${LOG}-log-link-relations.txt -relation stylesheet \-lm ${LOG}-log-lastmodified.txt \-title ${LOG}-log-title.txt \-referer ${LOG}-log-referer.txt \-negotiated ${LOG}-log-negotiated.txt \-404 ${LOG}-log-notfound.txt \-reject ${LOG}-log-reject.txt \-format ${LOG}-log-format.txt \-charset ${LOG}-log-charset.txt \${ROOT} 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -