26 lines
509 B
JSON
26 lines
509 B
JSON
{
|
|
"name": "mv",
|
|
"section": 1,
|
|
"title": "move or rename files",
|
|
"synopsis": [
|
|
"mv [OPTION]... [OPERAND]..."
|
|
],
|
|
"description": "Bare OS implementation of move or rename files. Full behavior is defined in packages/bare-os-coreutils/src/mv.js.",
|
|
"options": [],
|
|
"keywords": [
|
|
"mv",
|
|
"bare-os",
|
|
"coreutils"
|
|
],
|
|
"examples": [
|
|
{
|
|
"caption": "rename",
|
|
"code": "mv old.txt new.txt"
|
|
},
|
|
{
|
|
"caption": "into dir",
|
|
"code": "mv *.txt ~/inbox/"
|
|
}
|
|
]
|
|
}
|