tail -f 等同於--follow=descriptor,根據文件描述符進行追蹤,當文件改名或被刪除,追蹤停止 tail -F 等同於--follow=name --retry,根據文件名進行追蹤,並保持重試,即該文件被刪除或改名後,如果再次創建相同的文件名,會繼續追蹤 tail -F 相當於 ...
tail -f 等同於--follow=descriptor,根據文件描述符進行追蹤,當文件改名或被刪除,追蹤停止
tail -F 等同於--follow=name --retry,根據文件名進行追蹤,並保持重試,即該文件被刪除或改名後,如果再次創建相同的文件名,會繼續追蹤
tail -F 相當於 tail --follow=name --retry
man 手冊:
-f, --follow[={name|descriptor}] output appended data as the file grows; an absent option argument means 'descriptor' -F same as --follow=name --retry
保持更新,轉載請註明出處。
https://github.com/yaowenxu