-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathldd.ts
36 lines (36 loc) · 806 Bytes
/
ldd.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
const completionSpec: Fig.Spec = {
name: "ldd",
description: "Print shared library dependencies",
options: [
{
name: "--help",
description: "Show help for ldd",
},
{
name: "--version",
description: "Print version information and exit",
},
{
name: ["-d", "--data-relocs"],
description: "Process data relocations",
},
{
name: ["-r", "--function-relocs"],
description: "Process data and function relocations",
},
{
name: ["-u", "--unused"],
description: "Print unused direct dependencies",
},
{
name: ["-v", "--verbose"],
description: "Print all information",
},
],
args: {
name: "exe",
template: "filepaths",
isVariadic: true,
},
};
export default completionSpec;