diff --git a/pages/common/tail.md b/pages/common/tail.md index 1c6f82aee9..46d85c73de 100644 --- a/pages/common/tail.md +++ b/pages/common/tail.md @@ -21,3 +21,7 @@ - Keep reading file until `Ctrl + C`, even if the file is rotated: `tail -F {{file}}` + +- Show last 'num' lines in 'file' and refresh every 'n' seconds: + +`tail -n {{num}} -s {{n}} -f {{file}}`