26 lines
559 B
JSON
26 lines
559 B
JSON
{
|
|
"name": "tail",
|
|
"section": 1,
|
|
"title": "copy the last part of a file",
|
|
"synopsis": [
|
|
"tail [OPTION]... [OPERAND]..."
|
|
],
|
|
"description": "Bare OS implementation of copy the last part of a file. Full behavior is defined in packages/bare-os-coreutils/src/tail.js.",
|
|
"options": [],
|
|
"keywords": [
|
|
"tail",
|
|
"bare-os",
|
|
"coreutils"
|
|
],
|
|
"examples": [
|
|
{
|
|
"caption": "last lines",
|
|
"code": "tail -n 20 app.log"
|
|
},
|
|
{
|
|
"caption": "follow vibe (Bare: poll manually)",
|
|
"code": "tail error.log"
|
|
}
|
|
]
|
|
}
|