Andrew Rich <vk4tec at tech-software.net> wrote: > while (<$sock>) > { > print; > } Your probably want: while (<$sock>) { /^#/ or print; } to filter out the keep-alive comments from the server. 73 de -- Bob Poortinga K9SQL Bloomington, IN US