¿Cómo utilizar $SHELL?

¿Cómo utilizar $SHELL?

Estoy tratando de determinar si la persona que ejecuta mi script está en un shell bash o zsh (o gitbash).

Pensé que podría hacer algo como esto:

  if [ $SHELL == *"zsh"* ]; then
    THIS_SHELL="zsh"
  elif [ $SHELL == *"bash"* ] || [ $0 = "/usr/bin/bash" ]; then
    THIS_SHELL="bash"
  fi

Pero hay algo que no entiendo:

ALT02884% echo $SHELL
/bin/zsh
ALT02884% if [ $SHELL == *"zsh"* ]; then
then> echo "yes"
then> else
else> echo "no"
else> fi
zsh: = not found

¿Que esta pasando aqui?

Respuesta1

Parece que necesitaba agregar otro conjunto de corchetes a mi prueba:

if [[ $SHELL == *"zsh"* ]]; then
    THIS_SHELL="zsh"
  elif [[ $SHELL == *"bash"* ]]; then
    THIS_SHELL="bash"
  fi

Aquí hay una explicación: https://stackoverflow.com/a/13542854/226473

información relacionada