File type check and command component

This commit is contained in:
2021-12-29 09:43:19 -06:00
parent 15ef310a26
commit 7f8e2d84bf
26 changed files with 1381 additions and 1861 deletions

10
constants/Commands.js Normal file
View File

@@ -0,0 +1,10 @@
export default {
EXAMPLE_COMMAND: [
{ argument: "tree", description: null},
{ argument: "-h", description: "Human readable size" },
{ argument: "--du", description: "Calculate total folder size" },
{ argument: "-L 2", description: "Max depth" },
{ argument: "> tree.json", description: "Save output into file" },
]
}