/ utils / bash / specs / nohup.ts
nohup.ts
 1  import type { CommandSpec } from '../registry.js'
 2  
 3  const nohup: CommandSpec = {
 4    name: 'nohup',
 5    description: 'Run a command immune to hangups',
 6    args: {
 7      name: 'command',
 8      description: 'Command to run with nohup',
 9      isCommand: true,
10    },
11  }
12  
13  export default nohup