#!/bin/csh -f set icondir=/usr/local/www/icons set iconuri=/icons echo 'Content-type: text/html; charset=us-ascii' echo '' echo '' echo '' echo ' Icons available on this host' echo '' echo '' cd $icondir foreach file (*.{gif,jpg,png}) echo "$file
" end echo '
THE END'