Você não pode baixar e executar o arquivo .php, já que ele deve ser executado no servidor.
Se o site for como:
<html>
...
<img width="100%" src="http://DOMAIN.org/CREATE_IMAGE.php">...</html>
Quandovocêobtémaorigemdapágina,nãoépossívelverisso(noladodocliente).Oquevocêdeveveré:
<html>...<imgwidth="100%" src="http://DOMAIN.org/IMAGE_LINK_GENERATED_BY_THE_PHP_SCRIPT">...</html>
Vocêpodeentãowgetohtml,analisá-loebaixaraimagem.Vocêdeveconheceropadrãodonomedoarquivoouasextensõespossíveis.Sevocênãofizerisso,poderárepetirumalistadepossíveisextensões.Paraapenasumaimagem,deveseralgocomoisto:
#Getthehtmlforustoparsewgethttp://DOMAIN.org/index.html-Oindex.html#Listofcommonimageextensionsexts=("png" "jpg" "jpeg" "bmp" "gif")
for ext in ${exts[@]}
do
# Parse the html looking for an image
# You'll have to adapt the regex, of course
# man grep to see what each letter stands for
img='grep -shoiP "DOMAIN\.org/.+\.${ext}" index.html'
if [ "$img" = "" ]
then
continue
else
break
fi
done
wget $img
Claro que você terá que adaptar isso.