克隆 github 存储库时创建命令
今天,我去看了果冻Github页面。我找到了这个。 我注意到,在他们克隆了仓库(并移至果冻语言目录)之后,他们就能使用“果冻”命令。怎么可能?我自己怎么做?
Today, I went and looked at the Jelly github page. I found this.
I noticed that after they cloned the repo(and moving to the jellylanguage directory), they were able to use the "jelly" command. How is this possible? And how can I do it myself?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是可执行的二进制文件。您可以编译代码以创建可以以
./ a
的方式运行的本性可执行性二进制文件 - 然后您可以将其放在/usr/usr/local/bin
中,以便能够使用它来自任何地方或添加该二进制位置的目录到您的路径环境变量It is an executable binary. You can compile code to create a natively executable binary that can be run as
./a
- then you can put that in/usr/local/bin
to be able to use it from anywhere OR add the directory where that binary is to your path environment variable