#! /bin/sh # Generate hypertext menu from directory list for i in $(find . -type d); do ( cd $i ;ls -lh | ls2html.awk > index.html ); done