Is there a way to modify so that the tail -f lists the line number of the current file as well.
tail -f
Something similar to grep -n <Strings> *.
grep -n <Strings> *
This command takes into account the number of lines above also
tail -f -n +1 yourfile.txt | nl