mirror of https://github.com/Hilbis/Hilbish
16 lines
255 B
Lua
16 lines
255 B
Lua
|
local commander = require 'commander'
|
||
|
|
||
|
commander.register('bg', function()
|
||
|
local job = hilbish.jobs.last()
|
||
|
if not job then
|
||
|
print 'bg: no last job'
|
||
|
return 1
|
||
|
end
|
||
|
|
||
|
local err = job.background()
|
||
|
if err then
|
||
|
print('bg: ' .. err)
|
||
|
return 2
|
||
|
end
|
||
|
end)
|