diff options
author | 2022-11-23 21:57:38 +0100 | |
---|---|---|
committer | 2022-11-23 21:57:38 +0100 | |
commit | 35b518711938c2bc88f35d104bb35d9956f0c267 (patch) | |
tree | 50cccc637a1a03c1074cad4b10edcc633a09617a /src/tools/chmod-calculator/index.ts | |
parent | 94698cea50d46906dbb969036f586567f22b1e45 (diff) | |
download | it-tools-35b518711938c2bc88f35d104bb35d9956f0c267.tar.gz it-tools-35b518711938c2bc88f35d104bb35d9956f0c267.tar.zst it-tools-35b518711938c2bc88f35d104bb35d9956f0c267.zip |
feat(new-tool): chmod calculator
Diffstat (limited to 'src/tools/chmod-calculator/index.ts')
-rw-r--r-- | src/tools/chmod-calculator/index.ts | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/tools/chmod-calculator/index.ts b/src/tools/chmod-calculator/index.ts new file mode 100644 index 0000000..7d299e4 --- /dev/null +++ b/src/tools/chmod-calculator/index.ts @@ -0,0 +1,22 @@ +import { FileInvoice } from '@vicons/tabler'; +import { defineTool } from '../tool'; + +export const tool = defineTool({ + name: 'Chmod calculator', + path: '/chmod-calculator', + description: 'Compute your chmod permissions and commands with this online chmod calculator.', + keywords: [ + 'chmod', + 'calculator', + 'file', + 'permission', + 'files', + 'directory', + 'folder', + 'recursive', + 'generator', + 'octal', + ], + component: () => import('./chmod-calculator.vue'), + icon: FileInvoice, +}); |