My requirement is to read a log file continuously like tail -f <file>,
The cpan module: File::Tail does just this.
But my questions is this :
Both the cpan module & tail command uses time based testing of the file handles.
i don’t understand why select command can't be used in this situation.
Suggestions welcomed
Ps : I probed the tail –f <file> using the truss command.