欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

遍历删除目录下的所有子目录(文件夹)和文件 删除 frontcache目录下面的所有 有大用 有大大用

把下面的代码 加入 crontab 就能定时删除了 

(比如 0 5 * * 0 /root/removefrontcache.sh)


 vim removefrontcache.sh


#!/bin/bash

#


for I in /home/wwwroot/* ; do

   Frontcache=${I}/public_html/resources/views/frontcache

   if [ -d $Frontcache ]; then

      echo ${Frontcache}

      rm -Rf ${Frontcache}/*

   fi

done


普通分类: