I’m trying to write a modulefile to load a program, and I would like to include multiple aliases users can call the program with, as they know it under different names. How can I modify this command for setting a single alias to point multiple aliases towards the same executable?
# Set alias for the executable
set-alias "nickname1" "path/to/the/executable -other-command-line-arguments"
Thanks in advance!