厌倦了慢速的解释型POSIX Shell吗?
我刚刚创建了一个新的 shell,使用 LLVM JIT 和 Go 语法。这个 shell 通过 process(cmd[args]).then(cmd2[args]) 来运行外部命令。它内置了 Git 和 Docker 功能,以及文件模块。由于它的 process 和 then 函数会忽略 (;, &, | 等符号,因此更安全。 .then() 是推荐的管道语法。它可以使用 @posix 装饰器即时编译普通的 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.