mono/packages/kbot/ref/utils/bash/specs/nohup.ts
2026-04-01 01:05:48 +02:00

14 lines
274 B
TypeScript

import type { CommandSpec } from '../registry.js'
const nohup: CommandSpec = {
name: 'nohup',
description: 'Run a command immune to hangups',
args: {
name: 'command',
description: 'Command to run with nohup',
isCommand: true,
},
}
export default nohup