step 1: make a directory on your system and copy pictures into it.
Step 2: open up a file called createpage.sh and type the following:
#!/bin/bash
ls *.jpg > ALL.html
perl -pi -e 's/.*//g' ALL.html
Step 3: sh ./createpage.sh
This script will create a simple web page that puts all of the jpg filenames into the "img src" tag.