14 lines
555 B
JSON
14 lines
555 B
JSON
{
|
|
"name": "mktemp",
|
|
"section": 1,
|
|
"title": "create a temporary file or directory",
|
|
"synopsis": ["mktemp [OPTION] [TEMPLATE]"],
|
|
"description": "Creates a file or directory under /tmp (or absolute TEMPLATE). Replaces XXXXXX with random characters. See packages/bare-os-coreutils/src/mktemp.js.",
|
|
"options": [{ "flag": "-d", "meaning": "create a directory" }],
|
|
"keywords": ["mktemp", "bare-os", "coreutils"],
|
|
"examples": [
|
|
{ "caption": "file", "code": "mktemp tmp.XXXXXX" },
|
|
{ "caption": "dir", "code": "mktemp -d dir.XXXXXX" }
|
|
]
|
|
}
|