#!/bin/sh ## ## SCRIPT: 00_GEN_htmFilesList.sh ## ## Started: 2010mar09 ## Changed: ## ## FOR TESTING: # set -v ## ## Initialize the output file. ## LISTFILE="00_temp_htmFilesLIST.txt" rm "$LISTFILE" ## ## Generate the list. ## ls | grep '\.htm$' > "$LISTFILE" ## kwrite "$LISTFILE" gedit "$LISTFILE"