Add BSD shells to shell_version
This commit is contained in:
parent
39033fdeed
commit
6a3c4d4fb8
10
fetch
10
fetch
|
@ -635,10 +635,16 @@ getshell () {
|
||||||
shell=${shell/ zsh}
|
shell=${shell/ zsh}
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*"mksh"*)
|
*"mksh"* | *"ksh")
|
||||||
shell+="$(mksh -c 'printf "%s" "$KSH_VERSION"')"
|
shell+="$("$SHELL" -c 'printf "%s" "$KSH_VERSION"')"
|
||||||
shell=${shell/ * KSH}
|
shell=${shell/ * KSH}
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
*"tcsh"* | *"csh"*)
|
||||||
|
shell+="$("$SHELL" --version)"
|
||||||
|
shell=${shell/tcsh}
|
||||||
|
shell=${shell/\(*}
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
shell="${shell/\(*\)}"
|
shell="${shell/\(*\)}"
|
||||||
|
|
Reference in New Issue