21 items
NAME ↑ SIZE MODIFIED PERMS ACTIONS
.. / Parent Directory
ksh-functions — dir
2026-06-04 03:36 · rwxr-xr-x
2026-06-04 03:36 rwxr-xr-x
zsh-functions — dir
2026-06-04 03:36 · rwxr-xr-x
2026-06-04 03:36 rwxr-xr-x
bash — 1.7 KB
2025-09-21 09:06 · rw-r--r--
1.7 KB 2025-09-21 09:06 rw-r--r--
bash_completion — 12.53 KB
2025-09-21 09:06 · rw-r--r--
12.53 KB 2025-09-21 09:06 rw-r--r--
cmake — 1.2 KB
2025-09-21 09:06 · rw-r--r--
1.2 KB 2025-09-21 09:06 rw-r--r--
csh — 232 B
2025-09-21 09:06 · rw-r--r--
232 B 2025-09-21 09:06 rw-r--r--
fish — 867 B
2025-09-21 09:06 · rw-r--r--
867 B 2025-09-21 09:06 rw-r--r--
fish_completion — 13 KB
2023-05-14 17:11 · rw-r--r--
13 KB 2023-05-14 17:11 rw-r--r--
ksh — 1.7 KB
2025-09-21 09:06 · rw-r--r--
1.7 KB 2025-09-21 09:06 rw-r--r--
lisp — 3.15 KB
2025-09-21 09:06 · rw-r--r--
3.15 KB 2025-09-21 09:06 rw-r--r--
perl.pm — 764 B
2025-09-21 09:06 · rw-r--r--
764 B 2025-09-21 09:06 rw-r--r--
profile.csh — 109 B
2025-09-21 09:06 · rw-r--r--
109 B 2025-09-21 09:06 rw-r--r--
profile.sh — 479 B
2025-09-21 09:06 · rw-r--r--
479 B 2025-09-21 09:06 rw-r--r--
python.py — 1.14 KB
2025-09-21 09:06 · rw-r--r--
1.14 KB 2025-09-21 09:06 rw-r--r--
r.R — 1005 B
2025-09-21 09:06 · rw-r--r--
1005 B 2025-09-21 09:06 rw-r--r--
ruby.rb — 883 B
2025-09-21 09:06 · rw-r--r--
883 B 2025-09-21 09:06 rw-r--r--
sh — 2.08 KB
2025-09-21 09:06 · rw-r--r--
2.08 KB 2025-09-21 09:06 rw-r--r--
tcl — 1.1 KB
2025-09-21 09:06 · rw-r--r--
1.1 KB 2025-09-21 09:06 rw-r--r--
tcsh — 233 B
2025-09-21 09:06 · rw-r--r--
233 B 2025-09-21 09:06 rw-r--r--
tcsh_completion — 7.78 KB
2025-09-21 09:06 · rw-r--r--
7.78 KB 2025-09-21 09:06 rw-r--r--
zsh — 1.99 KB
2025-09-21 09:06 · rw-r--r--
1.99 KB 2025-09-21 09:06 rw-r--r--
ONLINE
init
21 items
21:33:09
TERMINAL FM
Edit
Preview
Download
Rename
Copy
Chmod
Delete
# shellcheck shell=ksh unset _mlshdbg; # disable shell debugging for the run of this init file if [ "${MODULES_SILENT_SHELL_DEBUG:-0}" = '1' ]; then # immediately disable debugging to echo the less number of line possible case "$-" in *v*x*) set +vx; _mlshdbg='vx' ;; *v*) set +v; _mlshdbg='v' ;; *x*) set +x; _mlshdbg='x' ;; *) _mlshdbg='' ;; esac; fi; # define modules runtime quarantine configuration export MODULES_RUN_QUARANTINE='LD_LIBRARY_PATH LD_PRELOAD' # setup quarantine if defined unset _mlre _mlIFS; if [ -n "${IFS+x}" ]; then _mlIFS=$IFS; fi; IFS=' '; for _mlv in ${MODULES_RUN_QUARANTINE:-}; do if [ "${_mlv}" = "${_mlv##*[!A-Za-z0-9_]}" ] && [ "${_mlv}" = "${_mlv#[0-9]}" ]; then if [ -n "$(eval 'echo ${'"$_mlv"'+x}')" ]; then _mlre="${_mlre:-}__MODULES_QUAR_${_mlv}='$(eval 'echo ${'"$_mlv"'}')' "; fi; _mlrv="MODULES_RUNENV_${_mlv}"; _mlre="${_mlre:-}${_mlv}='$(eval 'echo ${'"$_mlrv"':-}')' "; fi; done; if [ -n "${_mlre:-}" ]; then _mlre="eval ${_mlre}__MODULES_QUARANTINE_SET=1 "; fi; # define module command and surrounding initial environment (default value # for MODULESHOME, MODULEPATH, LOADEDMODULES and parse of init config files) # shellcheck disable=2086 # word splitting expected on _mlre eval "$(${_mlre:-}/usr/bin/tclsh '/usr/share/Modules/libexec/modulecmd.tcl' ksh autoinit)" # clean temp variables used to setup quarantine if [ -n "${_mlIFS+x}" ]; then IFS=$_mlIFS; unset _mlIFS; else unset IFS; fi; unset _mlre _mlv _mlrv # restore shell debugging options if disabled if [ -n "${_mlshdbg:-}" ]; then set -"$_mlshdbg"; unset _mlshdbg; fi; # vim:set tabstop=3 shiftwidth=3 expandtab autoindent syntax=sh: