1importtype{CommandSpec}from'../registry.js' 2 3constnohup: CommandSpec={ 4name:'nohup', 5description:'Run a command immune to hangups', 6args:{ 7name:'command', 8description:'Command to run with nohup', 9isCommand: true,10},11}1213exportdefaultnohup