The user-friendly command line shell.
Go to file
Ron Gebauer ce4fdbaf7c Create bd.fish
Add completion for bd, per https://github.com/0rax/fish-bd
2017-11-26 19:21:37 -08:00
.github
build_tools Support regex both BSD and GNU generating man pages 2017-11-26 18:19:45 -08:00
cmake cmake: restore check for fixed-args tparm ("Solaris tparm kludge") 2017-11-22 18:58:27 +08:00
debian
doc_src cmake: update CheckIncludeFiles to enable C++ checks 2017-11-17 16:21:56 +08:00
etc
fish.xcodeproj Fix up builtin_wait build system 2017-11-16 10:48:21 -08:00
m4
muparser-2.2.5 Add muParser headers to CMake build 2017-11-16 12:51:16 -08:00
osx Merge branch 'Integration_2.7.0' 2017-11-24 19:16:24 +11:00
pcre2-10.22
po Corrected variables mismatches in translations 2017-11-23 11:02:32 +01:00
share Create bd.fish 2017-11-26 19:21:37 -08:00
src Use some modern initialization syntax in builtin_wait 2017-11-16 10:54:34 -08:00
tests add wait command 2017-11-16 10:48:21 -08:00
.clang-format
.cppcheck.rules
.cppcheck.suppressions
.editorconfig Add max_line_length to .editorconfig 2017-06-16 01:32:55 +02:00
.gitattributes Update .gitattributes for muparser 2017-10-08 06:49:49 -07:00
.gitignore .gitignore: ignore more muParser artefacts 2017-08-27 21:44:51 +08:00
.oclint Tell oclint to ignore another idiom that is safe 2017-09-09 00:18:05 -07:00
.travis.yml travis: run autoreconf with --no-recursive 2017-10-10 15:14:44 +08:00
BSDmakefile Silence directory change messages when calling gmake from BSD make 2017-10-12 12:50:21 -05:00
CHANGELOG.md Create bd.fish 2017-11-26 19:21:37 -08:00
CMakeLists.txt cmake: add gettext support 2017-11-17 16:21:56 +08:00
config_cmake.h.in cmake: restore check for fixed-args tparm ("Solaris tparm kludge") 2017-11-22 18:58:27 +08:00
config.guess
config.sub
configure.ac Update MuParser source 2017-08-25 07:54:40 +08:00
CONTRIBUTING.md Update link in CONTRIBUTING.md 2017-11-03 14:07:45 +01:00
COPYING
Dockerfile
Doxyfile
Doxyfile.help
Doxyfile.user
fish.pc.in
fish.spec.in fish.spec: depend on system pcre2 libraries where available 2017-08-26 00:16:29 +08:00
install-sh
lexicon_filter.in
Makefile.in add wait command 2017-11-16 10:48:21 -08:00
README.md Fix a typo 2017-10-31 18:13:31 +08: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

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-2
sudo apt-get update
sudo apt-get install fish

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

Windows

fish can be installed using Cygwin Setup (under the Shells category).

fish can be installed into Windows Subsystem for Linux using the instructions under Packages for
Linux
for the appropriate image (eg Ubuntu).

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:

  • a curses implementation such as ncurses (libraries and the tput command)
  • PCRE2 library - a copy is included with fish
  • MuParser library - a copy is included with fish
  • gettext (library and gettext command), if compiled with translation support
  • basic system utilities including basename, cat, cut, date, dircolors, dirname, ls,
    mkdir, mkfifo, mktemp, rm, seq, sort, stat, stty, tail, tr, tty, uname,
    uniq, wc, and whoami
  • a number of common UNIX utilities:
    • awk
    • find
    • grep
    • hostname
    • kill
    • ps
    • sed

The following optional features also have specific requirements:

  • builtin commands that have the --help option or print usage messages require nroff and
    ul (manual page formatters) to do so
  • completion generation from manual pages requires Python 2.7, 3.3 or greater, and possibly the
    backports.lzma module for Python 2.7
  • the fish_config Web configuration tool requires Python 2.7, 3.3 or greater, and a web browser
  • system clipboard integration (with the default Ctrl-V and Ctrl-X bindings) require either the
    xsel or pbcopy/pbpaste utilities
  • prompts which support showing VCS information (Git, Mercurial or Subversion) require these
    utilities

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 to fish is in your /etc/shells file.

Use the following command if you didn't already add your fish path to /etc/shells.

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

To switch your default shell back, you can run:

chsh -s /bin/bash

Substitute /bin/bash with /bin/tcsh or /bin/zsh as appropriate.

You may need to logout/login for the change (chsh) to take effect.

Building

Dependencies

Compiling fish requires:

  • a C++11 compiler (g++ 4.8 or later, or clang 3.3 or later)
  • CMake, or GNU Make (all platforms), or Xcode (macOS only)
  • a curses implementation such as ncurses (headers and libraries)
  • PCRE2 (headers and libraries) - a copy is included with fish
  • MuParser (headers and libraries) - a copy is included with fish
  • gettext (headers and libraries) - optional, for translation support

Compiling from git (that is, not a released tarball) also requires:

  • either Xcode (macOS only) or the following Autotools utilities (all platforms):
    • autoconf 2.60 or later
    • automake 1.13 or later
  • Doxygen (1.8.7 or later) - optional, for documentation

Building from source

Using CMake

mkdir build; cd build
cmake .. #  add -DCMAKE_BUILD_TYPE=Release for release build
make install

Using autotools

autoreconf --no-recursive #if building from Git
./configure
make
sudo make install

Xcode Development Build

  • Build the base target in Xcode
  • Run the fish executable, for example, in DerivedData/fish/Build/Products/Debug/base/bin/fish

Xcode Build and Install

xcodebuild install
sudo ditto /tmp/fish.dst /
sudo make install-doc

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 ncurses-dev libncurses5-dev gettext autoconf

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 IRC channel #fish at irc.oftc.net. 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 on this github page.