The user-friendly command line shell.
Go to file
Bjorn Neergaard 02e9486559
Fix manpath handling in create_manpage_completions.py (#6879)
* Fix manpath handling in create_manpage_completions.py

...as well as do some (very!) light cleanup.

Currently, `create_manpage_completions.py` does not properly
understand/respect the `$MANPATH` variable. One important feature of
`$MANPATH` is that an empty component (i.e. the trailing : in
`foo:bar:`) expands to the 'default' or 'system' path -- that is to say,
the path that would be used if `$MANPATH` was unset. This allows the
user to extend the manpath without clobbering it, and has been a feature
many Unices have included for years.

The current implementation blindly uses the `$MANPATH` variable if it
exists, which does not allow for this behaviour -- to expand the
variable correctly, an external program must be invoked. Therefore, we
first shell out to the 'proper' (read: best guess) external program. If
that fails, we can then try to use `$MANPATH` directly/literally.
Finally, if both of those are impossible, we can fall back to some
common paths from widely used operating systems.

Note that the `man.conf` parsing has been removed: this is because while
many 'traditional' Unices (BSDs, Solaris, macOS) support this file, only
macOS actually ships a file -- most other Unices use a `conf.d`-style
layout and supporting that from our Python is impractical and silly at
best. On GNU (read: Linux) systems, `mandb` uses `/etc/man_db.conf` with
slightly different syntax and sematics. As this code-path has bitrotted
(and likely never worked, anyway), just remove it.

`create_manpage_completions.py` looks like it has suffered a lot of
confusion and bitrot in general over the last few years -- and is
overdue for a major refactoring. I am quite interested in tackling this,
but I plan to wait until the go-ahead to drop support for Python 2 is
given, as a major refactor/rewrite that still supports Python 2 (and
thus ignores the ergonomic/API/syntax improvements of Python 3) does not
make sense to me.

Related: #5657

It would probably be good to revisit `man.fish` once again when a
comprehensive refactor happens: hopefully every permutation of
`man`/`$MANPATH` could be documented as part of that effort.

* Restore /etc/man.conf parsing

I was not aware that this codepath was used -- since it appeared that it
would throw an error when it was reached. Redo it, using regex, and
support parsing NetBSD man.conf as well (untested).

* Fix create_manpage_completions.py under Python 2
2020-05-07 21:01:02 +02:00
.builds CI: Add python dependencies 2019-06-25 19:17:53 +02:00
.github github actions: Disable macOS for now 2020-04-18 10:31:22 +02:00
benchmarks Reindent functions to remove useless quotes 2020-03-09 19:46:43 +01:00
build_tools Update littlecheck to escape output 2020-04-26 14:39:46 +02:00
cmake Add CMake variable FISH_USE_SYSTEM_PCRE2 2020-04-28 18:30:40 -07:00
debian debian packaging: recommend python3-distutils for web config 2020-04-11 22:18:31 +08:00
doc_src Update set --show docs 2020-04-26 17:55:17 +02:00
etc It's status --is-interactive (#3086) 2016-05-29 12:24:24 +02:00
osx Add the get-task-allow entitlement 2020-02-29 15:29:50 -08:00
pcre2 Move pcre2-10.34 to pcre2/ 2020-02-19 16:42:08 -08:00
po Update translations for set --show 2020-04-26 17:52:24 +02:00
share Fix manpath handling in create_manpage_completions.py (#6879) 2020-05-07 21:01:02 +02:00
src Don't default term size if it is too small 2020-05-07 17:42:02 +02:00
tests Thread pgroups into builtin_eval 2020-04-26 15:40:22 -07:00
.clang-format Ensure that clang-format places config.h first in header list 2019-10-13 15:45:02 -07:00
.clang-tidy [clang-tidy] remove pointless public 2020-04-05 10:13:43 +02:00
.cppcheck.rules remove pointless flock() lint warning 2017-05-09 21:03:00 -07:00
.cppcheck.suppressions cppcheck: Suppress incorrectStringBooleanError 2018-11-14 12:15:40 +01:00
.editorconfig Don't trim trailing whitespace on .rst files 2019-06-15 22:36:07 -07:00
.gitattributes We no longer have two doc systems, move sphinx_doc_src back to doc_src 2020-02-19 17:00:35 -08:00
.gitignore gitignore __pycache__ 2020-03-21 17:48:01 -07:00
.oclint Tell oclint to ignore another idiom that is safe 2017-09-09 00:18:05 -07:00
.travis.yml travis: turn on errors for some more serious compiler warnings 2019-12-14 10:43:47 +08:00
BSDmakefile Revert "Remove Makefile(s)" 2019-12-18 21:27:09 -06:00
CHANGELOG.md Merge branch 'Integration_3.1.2' 2020-04-29 12:16:24 +08:00
CMakeLists.txt Add clang-tidy to build_tools/lint.fish 2020-04-04 14:47:58 -07:00
config_cmake.h.in cmake: adjust logic for TPARM_VARARGS 2020-02-20 18:14:54 +01:00
CONTRIBUTING.md fish_xgettext: update translation generation for new build system 2019-09-21 22:29:19 +08:00
COPYING chore: bump copyright year 2019 → 2020 2020-03-14 14:03:09 -07:00
Dockerfile Update Dockerfile for cmake3 2019-04-28 11:41:37 -07:00
fish.desktop Add .desktop file and logo for appimage 2020-01-08 19:50:46 +01:00
fish.pc.in Use pkg-config variables 2020-04-04 13:07:54 +02:00
fish.png Add .desktop file and logo for appimage 2020-01-08 19:50:46 +01:00
fish.spec.in fish.spec: stop running tests on RHEL 6 2020-04-01 17:17:16 +08:00
GNUmakefile [make] add default all in addition to catch-all % 2019-12-18 22:13:41 -06:00
README.md Disavow IRC channel 2019-11-30 09:29:49 +01:00

fish - the friendly interactive shell Build Status

fish is a smart and user-friendly command line shell for macOS, Linux, and the rest of the family.
fish includes features like syntax highlighting, autosuggest-as-you-type, and fancy tab completions
that just work, with no configuration required.

For more on fish's design philosophy, see the design document.

Quick Start

fish generally works like other shells, like bash or zsh. A few important differences can be found at https://fishshell.com/docs/current/tutorial.html by searching for the magic phrase "unlike other shells".

Detailed user documentation is available by running help within fish, and also at https://fishshell.com/docs/current/index.html

You can quickly play with fish right in your browser by clicking the button below:

Try in browser

Getting fish

macOS

fish can be installed:

Packages for Linux

Packages for Debian, Fedora, openSUSE, and Red Hat Enterprise Linux/CentOS are available from the
openSUSE Build
Service
.

Packages for Ubuntu are available from the fish
PPA
, and can be installed using the
following commands:

sudo apt-add-repository ppa:fish-shell/release-3
sudo apt-get update
sudo apt-get install fish

Instructions for other distributions may be found at fishshell.com.

Windows

  • On Windows 10, fish can be installed under the WSL Windows Subsystem for Linux with sudo apt install fish or from source with the instructions below.
  • Fish can also be installed on all versions of Windows using Cygwin (from the Shells category).

Building from source

If packages are not available for your platform, GPG-signed tarballs are available from
fishshell.com and fish-shell on
GitHub
. See the Building section for instructions.

Running fish

Once installed, run fish from your current shell to try fish out!

Dependencies

Running fish requires:

  • curses or ncurses (preinstalled on most *nix systems)
  • some common *nix system utilities (currently mktemp), in addition to the basic POSIX utilities (cat, cut, dirname, ls, mkdir, mkfifo, rm, sort, tee, tr, uname and sed at least, but the full coreutils plus find, sed and awk is preferred)
  • gettext (library and gettext command), if compiled with translation support

The following optional features also have specific requirements:

  • builtin commands that have the --help option or print usage messages require ul and either nroff or mandoc for display
  • automated completion generation from manual pages requires Python (2.7+ or 3.3+) and possibly the
    backports.lzma module for Python 2.7
  • the fish_config web configuration tool requires Python (2.7+ or 3.3 +) and a web browser
  • system clipboard integration (with the default Ctrl-V and Ctrl-X bindings) require either the
    xsel, xclip, wl-copy/wl-paste or pbcopy/pbpaste utilities
  • full completions for yarn and npm require the all-the-package-names NPM module

Switching to fish

If you wish to use fish as your default shell, use the following command:

chsh -s /usr/local/bin/fish

chsh will prompt you for your password and change your default shell. (Substitute /usr/local/bin/fish with whatever path fish was installed to, if it differs.) Log out, then log in again for the changes to take effect.

Use the following command if fish isn't already added to /etc/shells to permit fish to be your login shell:

echo /usr/local/bin/fish | sudo tee -a /etc/shells

To switch your default shell back, you can run chsh -s /bin/bash (substituting /bin/bash with /bin/tcsh or /bin/zsh as appropriate).

Building

Dependencies

Compiling fish requires:

  • a C++11 compiler (g++ 4.8 or later, or clang 3.3 or later)
  • CMake (version 3.2 or later)
  • a curses implementation such as ncurses (headers and libraries)
  • PCRE2 (headers and libraries) - a copy is included with fish
  • gettext (headers and libraries) - optional, for translation support

Sphinx is also optionally required to build the documentation from a cloned git repository.

Building from source (all platforms) - Makefile generator

To install into /usr/local, run:

mkdir build; cd build
cmake ..
make
sudo make install

The install directory can be changed using the -DCMAKE_INSTALL_PREFIX parameter for cmake.

Building from source (macOS) - Xcode

mkdir build; cd build
cmake .. -G Xcode

An Xcode project will now be available in the build subdirectory. You can open it with Xcode,
or run the following to build and install in /usr/local:

xcodebuild
xcodebuild -scheme install

The install directory can be changed using the -DCMAKE_INSTALL_PREFIX parameter for cmake.

Help, it didn't build!

If fish reports that it could not find curses, try installing a curses development package and build again.

On Debian or Ubuntu you want:

sudo apt-get install build-essential cmake ncurses-dev libncurses5-dev libpcre2-dev gettext

On RedHat, CentOS, or Amazon EC2:

sudo yum install ncurses-devel

Contributing Changes to the Code

See the Guide for Developers.

Contact Us

Questions, comments, rants and raves can be posted to the official fish mailing list at https://lists.sourceforge.net/lists/listinfo/fish-users or join us on our gitter.im channel. Or use the fish tag on Stackoverflow for questions related to fish script and the fish tag on Superuser for all other questions (e.g., customizing colors, changing key bindings).

Found a bug? Have an awesome idea? Please open an issue.