I'm trying to minimize the typing needed to be done by some developers.
My manager hates short acronyms, and likes to see LongDescriptiveNames.
This means that for a developer to change the build tool environment, they
would have to type:
% module swap FrobozzBuildEnv FrobozzBuildEnv/1.2
and that is painful.
I wanted to create an entry in a modulefile:
set-alias fbe "module swap FrobozzBuildEnv FrobozzBuildEnv/$1"
so the developers could simply say:
% fbe 1.2
instead, but I'm getting errors loading that modulefile (apparently due to
the $1).
What am I doing wrong and what should I be doing instead?
H
|