你是否厌倦了运行缓慢的解释型 POSIX shell?
1 分•作者: TheCodingDecode•5 天前
我刚刚用 LLVM JIT 和 Go 语法制作了一个新的 shell。这个 shell 使用 process(cmd[args]).then(cmd2 [args]) 来运行外部命令。它内置了 Git 和 Docker 功能以及 Files 模块。它更安全,因为它的 process 和 then 函数会忽略 (;,&,|, 等字符)。.then() 是管道操作的首选语法。它可以使用 @posix 装饰器 JIT 普通的 Posix 代码。现在就开始在 Orbit 上构建吧。请在评论中提出问题。我们欢迎关键性的问题和可能出现的问题。
查看原文
I just made a new shell with LLVM JIT and a Go syntax. This shell runs external commands using process(cmd[args]).then(cmd2 [args]). It has built-in Git and Docker functionality and Files module. It is safer as it's process and then functions ignore (;,&,|,etc). The .then() is the preferred syntax for piping. It can JIT ordinary Posix code using @posix decorator. Start building in Orbit Now. Please put questions in comments. We will welcome critical questions and problems that could arise.