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
保持更新,轉載請註明出處。