Files
zira-etc/scl/func_scl.csh
2021-05-24 22:18:33 +03:00

8 lines
248 B
Tcsh

if ( "$1" == "load" || "$1" == "unload" ) then
# It is possible that function module is not declared in time of this
# declaration so eval is used instead of direct calling of function module
eval "module $*:q"
else
/usr/bin/scl $*:q
endif