2006-10-31 15:23:16 +00:00
\section status status - query fish runtime information
2005-09-20 14:11:05 +00:00
\subsection status-synopsis Synopsis
2014-08-01 12:25:41 +00:00
\fish{synopsis}
2016-11-05 05:32:43 +00:00
status
status is-login
status is-interactive
status is-block
status is-command-substitution
status is-no-job-control
status is-full-job-control
status is-interactive-job-control
status current-filename
2017-04-12 22:34:25 +00:00
status current-function
2016-11-05 05:32:43 +00:00
status current-line-number
status print-stack-trace
status job-control CONTROL-TYPE
2014-08-01 02:37:32 +00:00
\endfish
2005-09-20 14:11:05 +00:00
\subsection status-description Description
2014-08-19 12:41:23 +00:00
2014-08-01 02:37:32 +00:00
With no arguments, `status` displays a summary of the current login and job control status of the shell.
2013-04-29 05:45:14 +00:00
2016-11-05 05:32:43 +00:00
The following operations (sub-commands) are available:
2014-08-19 12:41:23 +00:00
2016-11-05 05:32:43 +00:00
- `is-command-sub` returns 0 if fish is currently executing a command substitution. Also `-c` or `--is-command-substitution`.
2014-08-19 12:41:23 +00:00
2016-11-05 05:32:43 +00:00
- `is-block` returns 0 if fish is currently executing a block of code. Also `-b` or `--is-block`.
2014-08-19 12:41:23 +00:00
2016-11-05 05:32:43 +00:00
- `is-interactive` returns 0 if fish is interactive - that is, connected to a keyboard. Also `-i` or `--is-interactive`.
2014-08-19 12:41:23 +00:00
2016-11-05 05:32:43 +00:00
- `is-login` returns 0 if fish is a login shell - that is, if fish should perform login tasks such as setting up the PATH. Also `-l` or `--is-login`.
2014-08-19 12:41:23 +00:00
2016-11-05 05:32:43 +00:00
- `is-full-job-control` returns 0 if full job control is enabled. Also `--is-full-job-control` (no short flag).
2014-08-19 12:41:23 +00:00
2016-11-05 05:32:43 +00:00
- `is-interactive-job-control` returns 0 if interactive job control is enabled. Also, `--is-interactive-job-control` (no short flag).
2014-08-19 12:41:23 +00:00
2016-11-05 05:32:43 +00:00
- `is-no-job-control` returns 0 if no job control is enabled. Also `--is-no-job-control` (no short flag).
2014-08-19 12:41:23 +00:00
2016-11-05 05:32:43 +00:00
- `current-filename` prints the filename of the currently running script. Also `-f` or `--current-filename`.
2014-08-19 12:41:23 +00:00
2017-04-12 22:34:25 +00:00
- `current-function` prints the name of the currently called function if able, when missing displays "Not a function". Also `-u` or `--current-function`.
2016-11-05 05:32:43 +00:00
- `current-line-number` prints the line number of the currently running script. Also `-n` or `--current-line-number`.
2014-08-19 12:41:23 +00:00
2016-11-05 05:32:43 +00:00
- `job-control CONTROL-TYPE` sets the job control type, which can be `none`, `full`, or `interactive`. Also `-j CONTROL-TYPE` or `--job-control=CONTROL-TYPE`.
2014-08-19 12:41:23 +00:00
2016-11-05 05:32:43 +00:00
- `print-stack-trace` prints a stack trace of all function calls on the call stack. Also `-t` or `--print-stack-trace`.
\subsection status-notes Notes
For backwards compatibility each subcommand can also be specified as a long or short option. For example, rather than `status is-login` you can type `status --is-login`. The flag forms are deprecated and may be removed in a future release (but not before fish 3.0).
You can only specify one subcommand per invocation even if you use the flag form of the subcommand.