On Sat, May 20, 2006 at 06:57:16AM +1000, Howard Lowndes wrote:
> An example of what I am trying to do:
>
> eval echo -e "\\tGetting files from ${MIRROR_URL[$STARTIDX]}" $LOG_FILE
I don't know what you're trying to do with eval and the bare $LOG_FILE
thing here, but I'd use just printf:
printf "\tGetting files from %s\n" "${MIRROR_URL[$STARTIDX]}" >>
$LOG_FILE
I don't think echo has ever traditionally had support for \t.
--
Matt
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html