Files
systemd-timer/src/cli/main.ts
Max P. 97dc3fe23a feat(cli): add command to generate systemd unit files
- Introduces a CLI tool for creating systemd .timer and .service units
- Adds options for configuring unit names, commands, scheduling, and more
- Supports dry-run mode and user-level unit file generation
2025-05-21 03:01:21 +02:00

10 lines
299 B
TypeScript

import { Command } from '@cliffy/command';
import { createCommand } from './create.ts';
await new Command()
.name('systemd-timer')
.version('0.1.0')
.description('CLI Tool zum Erzeugen von systemd .timer und .service Units')
.command('create', createCommand)
.parse(Deno.args);