Hi all, this question is out of my scope
there are variable name abcd
in the directory, there are few jpg named
abcd-1.jpg
abcd-2.jpg
abcd-3.jpg ......
how to write a script to search how many abcd-*.jpg in the directory and return to
an array. i want to make it to display all the jpg file in the directory
the result should be like that
<img src="ac/abcd-1.jpeg"/>
<img src="ac/abcd-2.jpeg"/>
<img src="ac/abcd-3.jpeg"/>
Thanks all