in reply to Filehandle/array naming
open ( ${fh.$FILE}, "tail -f file$FILE |") || die "can't open file$FILE";You are probably much better off storing those filehandles in a data structure, say, a hash, instead of creating a set of related variables with programmatically obtained names. How can I use a variable as a variable name? explains it better than I can do at the moment.
|
|---|