문제

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