Вопрос

This is puzzling. I can use the module command at the terminal prompt, but I can't find where the executable is located in the file system! I did the three following searchs:

1- which module returns "no module in ...",

2- searched module under the bin/ directories of the PATH variable ... nothing,

3- locate module | grep -e "/module$" ...nothing.

None of these searches gave me the location! Suggestions, please?

Это было полезно?

Решение

Is module perhaps set as an alias? You could try this:

type -a module

Другие советы

One more suggestion:

find / -name "module*" 

As root

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top