Get current shell name
From SHELL
echo $SHELL
From env
env |grep SHELL
From $0
echo $0
From ps
ps |grep $$
Some of the content is generated by AI, please be cautious in identifying it.
echo $SHELL
env |grep SHELL
echo $0
ps |grep $$
Some of the content is generated by AI, please be cautious in identifying it.