34

tail -f bar/somefile.log would fail immediately when somefile.log does not exist. How do I make tail indefinitely wait for that file to be created (which will happen in a few moments)?

Update: using -F, I see:

tail: cannot open `bar/somefile.log' for reading: No such file or directory
tail: cannot watch parent directory of `bar/somefile.log': No such file or directory

because bar does't exist yet (it will be created in a few moments). when bar was created, and somefile.log was touched, tail didn't pick up the changes at all.

cYrus
  • 21,379
  • 8
  • 74
  • 79
Sridhar Ratnakumar
  • 4,759
  • 10
  • 43
  • 56

3 Answers3

43

You're not mentioning which OS you need it for, but tailon linux has the --retry and --follow options that will do just that;

tail --retry --follow=name somefile.log
31

This works:

while ! tail -f bar/somefile.log ; do sleep 1 ; done
cYrus
  • 21,379
  • 8
  • 74
  • 79
10

Create the file first:

touch somefile ; tail -f somefile
psusi
  • 7,837
  • 21
  • 25