#!/bin/sh # -*- coding: utf-8 -*- # @Author : c32 (amd5@qq.com) # @Blog : http://cx7863.blog.163.com/blog/static/2286500262016782229887/ # @Version : 1.0 # @DateTime: 2016-08-08 13:57:21 wget -r -k -np http://c32.19aq.com/ #rm替换为ls即为显示文件列表 文件名可用*.html匹配 find . -name "index.html?C=D;O=A" -exec rm {} \; find . -name "index.html?C=D;O=D" -exec rm {} \; find . -name "index.html?C=M;O=A" -exec rm {} \; find . -name "index.html?C=M;O=D" -exec rm {} \; find . -name "index.html?C=N;O=A" -exec rm {} \; find . -name "index.html?C=N;O=D" -exec rm {} \; find . -name "index.html?C=S;O=A" -exec rm {} \; find . -name "index.html?C=S;O=D" -exec rm {} \;