blob: 2bf4e3730e26e0a84972381465784b95f3d6bfce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
## Name
tail
## Synopsis
```sh
$ tail [--follow] [--lines number] <file>
```
## Description
Print the end ('tail') of a file.
## Options:
* `-f`, `--follow`: Output data as it is written to the file
* `-n number`, `--lines number`: Fetch the specified number of lines
## Arguments:
* `file`: File path
<!-- Auto-generated through ArgsParser -->
|