I have a tail that makes a site in an external file:
tail -f LOG.TXT | grep ';HI(<[0-9][0-9]><[0-9]>' | sed -u -f seds.dat |awk '{ print $1, $2, $5 = "HELLO =", $6, $7, $8, $9 } ' |grep -v '>'
I believe that the tail does not work because the delay to perform sed in seds.dat
Using CAT it takes a while but returns the information.
I would like to make it update the rows with tail?