新 Shell

1作者: TheCodingDecode5 天前
我刚刚用 LLVM JIT 和 Go 语法创建了一个新的 shell。这个 shell 使用 process(cmd[args]).then(cmd2 [args]) 来运行外部命令。它内置了 Git 和 Docker 功能以及 Files 模块。它更安全,因为 process 和 then 函数会忽略 (;,&,|,etc) 这些字符。`.then()` 是管道操作的首选语法。它可以使用 `@posix` 装饰器对普通的 Posix 代码进行 JIT 编译。现在就开始在 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.