2006-10-31 23:23:16 +08:00
|
|
|
\section status status - query fish runtime information
|
2005-09-20 22:11:05 +08:00
|
|
|
|
|
|
|
\subsection status-synopsis Synopsis
|
|
|
|
<tt>status [OPTION]</tt>
|
|
|
|
|
|
|
|
\subsection status-description Description
|
2013-04-29 13:45:14 +08:00
|
|
|
With no arguments, <tt>status</tt> displays a summary of the current login and job control status of the shell.
|
|
|
|
|
|
|
|
The following arguments are available:
|
2006-01-24 07:17:06 +08:00
|
|
|
- <tt>-c</tt> or <tt>--is-command-substitution</tt> returns 0 if fish is currently executing a command substitution
|
2005-09-20 22:11:05 +08:00
|
|
|
- <tt>-b</tt> or <tt>--is-block</tt> returns 0 if fish is currently executing a block of code
|
|
|
|
- <tt>-i</tt> or <tt>--is-interactive</tt> returns 0 if fish is interactive, i.e.connected to a keyboard
|
2006-01-24 07:17:06 +08:00
|
|
|
- <tt>-l</tt> or <tt>--is-login</tt> returns 0 if fish is a login shell, i.e. if fish should perform login tasks such as setting up the PATH.
|
2007-08-02 03:44:50 +08:00
|
|
|
- <tt>--is-full-job-control</tt> returns 0 if full job control is enabled
|
|
|
|
- <tt>--is-interactive-job-control</tt> returns 0 if interactive job control is enabled
|
|
|
|
- <tt>--is-no-job-control</tt> returns 0 if no job control is enabled
|
|
|
|
- <tt>-f</tt> or <tt>--current-filename</tt> prints the filename of the currently running script
|
|
|
|
- <tt>-n</tt> or <tt>--current-line-number</tt> prints the line number of the currently running script
|
|
|
|
- <tt>-j CONTROLTYPE</tt> or <tt>--job-control=CONTROLTYPE</tt> set the job control type. Can be one of: none, full, interactive
|
2009-02-23 03:17:14 +08:00
|
|
|
- <tt>-t</tt> or <tt>--print-stack-trace</tt> prints a stack trace of all function calls on the call stack
|
2007-08-02 03:44:50 +08:00
|
|
|
- <tt>-h</tt> or <tt>--help</tt> display a help message and exit
|