欢迎各位兄弟 发布技术文章
这里的技术是共享的
把下面的代码 加入 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