in reply to POE::FollowTail and xterm
Is this what you had in mind? I thought briefly that you might want a separate xterm for each message, but that could generate thousands of xterms very quickly, and thus would be silly (to use the technical term).#!/bin/bash xterm -hold -e /path/to/follow-tail.pl /var/log/httpd/access_log > /d +ev/null & xterm -hold -e /path/to/follow-tail.pl /var/log/httpd/error_log > /de +v/null &
|
---|