6 lines
348 B
Bash
Executable File
6 lines
348 B
Bash
Executable File
#!/bin/bash
|
|
for p in enterprise-model.html agents-archi.html wevia-meeting-rooms.html sales-hub.html weval-technology-platform.html; do
|
|
srcs=$(curl -sk --max-time 2 http://127.0.0.1:5890/$p -H "Host: weval-consulting.com" 2>/dev/null | grep -oE "(dicebear|robohash|agent-avatar-svg)" | sort -u | tr "\n" ",")
|
|
echo "$p:${srcs%,}"
|
|
done | head -5
|