码迷,mamicode.com
首页 > 其他好文 > 详细

nginx 批量删除cache

时间:2014-08-08 16:33:27      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:nginx   purge   cache   

#!/bin/sh

#auth by yx 20140808

#purge nginx cache

CACHE_DIR="/data/web/cache"

FILE="$*"

if [ $# -eq 0 ];then

    echo "please run \"sh $0 index.html index.jsp ....\""

    exit

fi

for i in `echo $FILE`

do

    grep -ra $i ${CACHE_DIR}| awk -F ":" ‘{print $1}‘ >./cache_list.txt

    for j in `cat ./cache_list.txt`

    do

rm -rf $j

    done

done


nginx 批量删除cache,布布扣,bubuko.com

nginx 批量删除cache

标签:nginx   purge   cache   

原文地址:http://iltxin.blog.51cto.com/5864827/1537279

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!