aboutsummaryrefslogtreecommitdiff
path: root/src/tools/chmod-calculator/index.ts
blob: 7d299e425729898f0c42d81a25d4dc604ce8af71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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,
});