使尾巴等待文件存在
tail -f bar/somefile.log当somefile.log不存在时将立即失败。我如何无限期地使tail等待该文件的创建(这将在稍后发生)? 更新:使用-F,我看到: 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 因为bar还不存在(稍后会创建)。当bar被创建somefile.log并被感动时,尾巴根本没有吸收变化。