命令使用范例参考//抓取face-recognition的使用文档,并把内容保存到face-recognition.txt文件,默认开启3个并发处理
sitefetch https://face-recognition.readthedocs.io/en/latest -o face-recognition.txt
//指定并发数量为10
sitefetch https://face-recognition.readthedocs.io/en/latest -o face-recognition.txt --concurrency 10
//指定获取那些页面的路径,如下
sitefetch https://face-recognition.readthedocs.io/en/latest -m "/en/**" -o face-recognition.txt
//指定获取页面中CSS选择器中的内容(页面中有些内容是框架固定内容,不是我们想要的,我们只需要页面中某个区域的内容,这个时候有必要指定)
sitefetch https://face-recognition.readthedocs.io/en/latest --content-selector ".document"