in reply to Usage of File::Tail::Multi generates conversion errors
The first arg of printf should be a formatting string.
printf("%s", "$line\n"); # ok printf("%s\n", $line); # ok printf("$line\n"); # ERROR [download]
print("$line\n"); [download]