63

In the bash shell, I could echo $? to get the exit code of a program run on the cli. What is the equivalent in the fish shell? Can't seem to find this in the docs.

doak
  • 809
  • 9
  • 24
Darc Nawg
  • 1,415
  • 3
  • 15
  • 25

1 Answers1

88

According to the official Fish documentation, you can use the $status variable:

How do I get the exit status of a command?

Use the $status variable. This replaces the $? variable used in some other shells.

Tyler Kindy
  • 79
  • 1
  • 7
user000001
  • 32,226
  • 12
  • 81
  • 108