while and cats

Top Page
Attachments:
Message as email
+ (text/plain)
Delete this message
Reply to this message
Author: Nathan Aubrey
Date:  
To: PLUG Discussion List
Subject: while and cats

All,
Is there a way to cat something while in a 'while' loop?
example:

RADIO=(1 2 3)
YEARS=(2007 2006)

for broadcast in "${RADIO[@]}"; do
  if [ "$broadcast" = "${broadcast#!}" ]; then
    for year in "${YEARS[@]}"; do
      echo "Downloading Network List..."
      ncftpls -x "1r" ftp://username@domain/location/$broadcast/$year/ | 
tee /tmp/$broadcast-$year 2>&1 1>/dev/null
        cat << EOF >> $broadcast-content.html
          Howdy
        EOF
  fi
done


It gives me an unexpected end of file.
Sorry for any wrapping that might occur.

nathan
--
---------------------------------------------------
PLUG-discuss mailing list -
To subscribe, unsubscribe, or to change you mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss