2006-10-31 15:23:16 +00:00
|
|
|
\section fish fish - the friendly interactive shell
|
2006-10-26 10:20:59 +00:00
|
|
|
|
|
|
|
\subsection fish-synopsis Synopsis
|
2014-08-01 12:25:41 +00:00
|
|
|
\fish{synopsis}
|
2014-08-08 02:44:37 +00:00
|
|
|
fish [OPTIONS] [-c command] [FILE [ARGUMENTS...]]
|
2014-08-01 02:37:32 +00:00
|
|
|
\endfish
|
2006-10-26 10:20:59 +00:00
|
|
|
|
|
|
|
\subsection fish-description Description
|
|
|
|
|
2014-08-01 02:37:32 +00:00
|
|
|
`fish` is a command-line shell written mainly with interactive use in mind. The
|
2013-04-23 13:40:48 +00:00
|
|
|
full manual is available <a href='index.html'>in HTML</a> by using the
|
2006-11-02 13:48:59 +00:00
|
|
|
<a href='#help'>help</a> command from inside fish.
|
2006-10-26 10:20:59 +00:00
|
|
|
|
Help cleanup
Large list of changes, including formatting and typos for most commands.
More substantive changes have been made to alias, bind, block, break,
builtin, case, cd, commandline, count, else, emit, fish_config, funced,
function, functions, history, math, mimedb, nextd, not, popd, prevd,
pushd, pwd, random, read, set, set_color, switch, test, trap, type,
ulimit, umask, and while.
2013-05-12 07:56:01 +00:00
|
|
|
The following options are available:
|
|
|
|
|
2014-08-01 02:37:32 +00:00
|
|
|
- `-c` or `--command=COMMANDS` evaluate the specified commands instead of reading from the commandline
|
|
|
|
- `-d` or `--debug-level=DEBUG_LEVEL` specify the verbosity level of fish. A higher number means higher verbosity. The default level is 1.
|
|
|
|
- `-h` or `--help` display help and exit
|
|
|
|
- `-i` or `--interactive` specify that fish is to run in interactive mode
|
|
|
|
- `-l` or `--login` specify that fish is to run as a login shell
|
|
|
|
- `-n` or `--no-execute` do not execute any commands, only perform syntax checking
|
|
|
|
- `-p` or `--profile=PROFILE_FILE` when fish exits, output timing information on all executed commands to the specified file
|
|
|
|
- `-v` or `--version` display version and exit
|
2006-10-26 10:20:59 +00:00
|
|
|
|
2006-11-02 13:48:59 +00:00
|
|
|
The fish exit status is generally the exit status of the last
|
|
|
|
foreground command. If fish is exiting because of a parse error, the
|
|
|
|
exit status is 127.
|