#ls_to_html #The purpose of this program is to turn the contents of a directory into clickable #links on a new html page. #The resulting file will be named index.html ls -1 > .ls_to_html.tmp echo "
" > index.html LIMIT=$(ls -1 | wc -l) let "LIMIT+=1" COUNT=1 while [ $COUNT != $LIMIT ] do TEMP=$(sed -n "${COUNT} {p;q;}" .ls_to_html.tmp) echo "