shell tools: globbing

This commit is contained in:
kepler155c@gmail.com
2019-05-10 08:08:49 -04:00
parent 8ea2598254
commit 86cba3b585
35 changed files with 303 additions and 432 deletions

10
shellex/apis/shell.lua Normal file
View File

@@ -0,0 +1,10 @@
local Util = require('util')
local shell = _ENV.shell
return {
getWorkingDirectory = shell.dir,
resolve = shell.resolve,
resolveProgram = shell.resolveProgram,
parse = Util.parse,
}