You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
357 B
19 lines
357 B
#!/bin/csh
|
|
|
|
# genhtml >! images.html
|
|
|
|
echo '<html><head><title>Images</title></head>'
|
|
echo '<body text="#000000" bgcolor="#ffffff">'
|
|
|
|
#set FILES = `/bin/ls *.gif *.jpg`
|
|
set GIF_FILES = `find . -name '*.gif'`
|
|
set JPG_FILES = `find . -name '*.jpg'`
|
|
|
|
foreach file ($GIF_FILES $JPG_FILES)
|
|
|
|
echo $file':'
|
|
echo '<img src="'$file'">'
|
|
|
|
end
|
|
|
|
echo '</body></html>'
|