mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
27 lines
426 B
Markdown
27 lines
426 B
Markdown
|
|
## Name
|
||
|
|
|
||
|
|
tail
|
||
|
|
|
||
|
|
## Synopsis
|
||
|
|
|
||
|
|
```sh
|
||
|
|
$ tail [--follow] [--lines number] <file>
|
||
|
|
```
|
||
|
|
|
||
|
|
## Description
|
||
|
|
|
||
|
|
Print the end ('tail') of a file.
|
||
|
|
|
||
|
|
## Options:
|
||
|
|
|
||
|
|
* `--help`: Display help message and exit
|
||
|
|
* `--version`: Print version
|
||
|
|
* `-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 -->
|