mirror of
https://github.com/Hilbis/Hilbish
synced 2025-03-13 18:00:41 +00:00
* feat: add clear and exec command * docs: add builtins to changelog * feat: add cat command
6 lines
109 B
Lua
6 lines
109 B
Lua
local commander = require 'commander'
|
|
|
|
commander.register('exec', function(args)
|
|
hilbish.exec(args[1])
|
|
end)
|