如何使 Ruby 文件作为可执行文件运行?

发布于 2024-10-28 18:36:05 字数 410 浏览 1 评论 0原文

我希望我的 Ruby 脚本文件能够从 Windows XP 的任何目录作为可执行文件运行。我创建了一个 test.rb (Ruby 脚本文件),并希望从 Windows 的任何目录作为“test”运行它,例如,“C:\test”或“C:\Directory\test”运行我的文件 test。 rb。

#!/usr/bin/envy ruby

p "Hi this is my test file"

我已在 ruby​​ 文件中添加了 shebang 代码,但是当我必须运行 Ruby 脚本时,我必须找到我的脚本文件并将其明确运行为“ruby test.rb”。

我还通过执行命令使该文件可执行:$ chmod +x hello-world.rb,但仍然不起作用。

提前致谢。

I want my Ruby Script File to run as executable from any directory of Windows XP. I have created a test.rb (Ruby Script file) and want to run it from any directory of my Windows as "test" for example, "C:\test" or "C:\Directory\test" runs my file test.rb.

#!/usr/bin/envy ruby

p "Hi this is my test file"

I have added the shebang code in my ruby file but when I have to run the Ruby Script, I have to locate my Script file and run it expicitly as "ruby test.rb".

I have also made the file executable by executing the command:$ chmod +x hello-world.rb
, but it still does not work.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜血缘 2024-11-04 18:36:05

我假设您使用的是 Linux 或 OS X 并在可从 Windows 访问的磁盘上创建文件? Windows 不使用 shebang,也不使用 Unix 文件模式。您需要将扩展​​名为 .rb 的文件与 Ruby 可执行文件关联起来;该操作的详细信息可以在 这个 Stack Overflow 问题;完成此操作后,您可以运行 C:\whatever\test.rbC:\whatever\test 来执行脚本。

I assume you're using Linux or OS X and creating the file on a disk accessible from Windows? Windows does not use shebangs, and it does not use Unix file modes. You will need to associate files with the .rb extension to the Ruby executable; details for that operation can be found at this Stack Overflow question; once you have done this, you can run C:\whatever\test.rb or C:\whatever\test to execute the script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文