mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 13:57:10 -04:00
23 lines
521 B
TypeScript
23 lines
521 B
TypeScript
![]() |
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,
|
||
|
});
|