#!/bin/sh ## ## SCRIPT: 00_GEN_jpgfilesList.sh ## ## Started: 2010feb20 ## Last update: 2010feb20 ## ## FOR TESTING: # set -v ## ## Initialize the output file. ## LISTFILE="00_temp_jpgfilesLIST.txt" rm "$LISTFILE" ## ## Generate the list. ## ls | grep '\.jpg$' > "$LISTFILE" ## kwrite "$LISTFILE" gedit "$LISTFILE"