7

I want to be able to check if a fish shell is being run in login, interactive, or batch mode, and this question only discusses bash.

Dan
  • 9,372
  • 5
  • 25
  • 39

1 Answers1

18

Use the status command:

$ fish -c 'status --is-interactive; and echo yes; or echo no'
no
$ status --is-interactive; and echo yes; or echo no
yes

Also, status --is-login. That should cover your bases.

glenn jackman
  • 84,176
  • 15
  • 116
  • 168