如何发出“模块加载”命令 在 shell 或 Perl 脚本中(即非交互方式)

发布于 2024-07-27 16:45:07 字数 77 浏览 5 评论 0原文

我可以交互地使用“module load xyz”命令,但是当从脚本运行时,它说找不到“module”命令。 有没有办法在脚本中加载模块?

I can use the "module load xyz" command interactively, but when run from a script, it says it can't find the "module" command. Is there any way of loading modules in a script?

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

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

发布评论

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

评论(3

挽梦忆笙歌 2024-08-03 16:45:07

像这样启动 bash 脚本:

#!/bin/bash -l

请注意,在此之后使用 module load xyz 加载的模块只能从脚本文件内部使用。

Start your bash script like this:

#!/bin/bash -l

Note that modules loaded after this with module load xyz will only be available from inside the script file.

我乃一代侩神 2024-08-03 16:45:07

尝试

source /etc/profile

如果这不起作用,您很可能遇到别名问题。 可能需要。

shopt -s expand_aliases

您的脚本中

Try

source /etc/profile

If that doesn't work, you most likely have a problem with aliases. You may need

shopt -s expand_aliases

in your script.

很快妥协 2024-08-03 16:45:07

如果您所说的模块指的是 Linux 内核模块,请查看 modprobe(或更底层的 insmod)。 通常不需要使用 Linux 发行版加载到 shell 中的任何别名(例如 module)。

(例如,我的发行版/设置中甚至没有 module 命令,因此我无法尝试查看您所指的模块类型。)

If by modules you mean Linux kernel modules, look into modprobe (or the more low-level insmod). There's usually no need to use whatever aliases (like module) that your Linux distro loaded into your shell.

(For example, I don't even have a module command on my distro/setup, so I can't try it to see what kind of modules you're referring to.)

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