欢迎各位兄弟 发布技术文章
这里的技术是共享的
#!/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