mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 09:38:16 -07:00
12 lines
429 B
Bash
12 lines
429 B
Bash
# -*- sh -*-
|
|
|
|
info_command() {
|
|
printf "%s:\n%s\n\n" "OS" "$(uname -a)"
|
|
printf "%s:\n%s\n\n" "SHELL" "$($SHELL --version)"
|
|
printf "%s:\n%s\n\n" "ASDF VERSION" "$(asdf_version)"
|
|
printf "%s:\n%s\n\n" "ASDF ENVIRONMENT VARIABLES" "$(env | grep -E "ASDF_DIR|ASDF_DATA_DIR|ASDF_CONFIG_FILE|ASDF_DEFAULT_TOOL_VERSIONS_FILENAME")"
|
|
printf "%s:\n%s\n\n" "ASDF INSTALLED PLUGINS" "$(asdf plugin list --urls)"
|
|
}
|
|
|
|
info_command "$@"
|