#!/bin/bash while true do sleep 5 for name in `ls /opt/html/*.php |grep -vE ‘info.php|config.php|external-fopen-java.php‘` //排除不需要的文件 do curl http://192.168.1.33:8090/${name##*/} >/dev/null //截取/后面的 done done
标签:## 1.3 name ash done gpo url conf span
#!/bin/bash while true do sleep 5 for name in `ls /opt/html/*.php |grep -vE ‘info.php|config.php|external-fopen-java.php‘` //排除不需要的文件 do curl http://192.168.1.33:8090/${name##*/} >/dev/null //截取/后面的 done done
标签:## 1.3 name ash done gpo url conf span
原文地址:https://www.cnblogs.com/wuzhiyi/p/8676486.html