claude/utils/bash/specs/nohup.ts
kuberwastaken ec53fcbe95 init
2026-03-31 16:25:52 +05:30

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