doc update/command synopses

This commit is contained in:
minjaesong
2026-06-06 21:59:18 +09:00
parent df16b99ba5
commit 3444bdf63b
49 changed files with 2145 additions and 69 deletions

View File

@@ -0,0 +1,17 @@
{
"tsfVersion": "1.0",
"name": "touch",
"summary": "Update a file's modification time, creating it if absent",
"symbols": {
"noCreate": { "kind": "option", "short": "-c", "summary": "Do not create the file if it does not exist" },
"options": { "kind": "group", "summary": "Options", "members": ["noCreate"] },
"file": { "kind": "positional", "type": "path", "name": "FILE", "summary": "File to touch" }
},
"synopsis": {
"type": "sequence",
"children": [
{ "type": "repeat", "child": { "type": "reference", "symbol": "options" } },
{ "type": "reference", "symbol": "file" }
]
}
}