新外壳

1作者: TheCodingDecode大约 2 个月前原帖
我刚刚创建了一个新的外壳,使用了LLVM JIT和Go语法。这个外壳通过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.