mirror of
http://10.0.2.1:3031/sauer/claude-code.git
synced 2026-06-30 14:56:58 +10:00
14 lines
274 B
TypeScript
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
|