-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathmv.ts
40 lines (39 loc) · 937 Bytes
/
mv.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
const completionSpec: Fig.Spec = {
name: "mv",
description: "Move & rename files and folders",
args: [
{
name: "source",
isVariadic: true,
template: ["filepaths", "folders"],
},
{
name: "target",
template: ["filepaths", "folders"],
},
],
options: [
{
name: "-f",
description:
"Do not prompt for confirmation before overwriting the destination path",
exclusiveOn: ["-i", "-n"],
},
{
name: "-i",
description:
"Cause mv to write a prompt to standard error before moving a file that would overwrite an existing file",
exclusiveOn: ["-f", "-n"],
},
{
name: "-n",
description: "Do not overwrite existing file",
exclusiveOn: ["-f", "-i"],
},
{
name: "-v",
description: "Cause mv to be verbose, showing files after they are moved",
},
],
};
export default completionSpec;