fish
fish (friendly interactive shell)は主に対話的に使用することを意図されたユーザフレンドリーなコマンドラインシェルです。
目次
インストール
公式リポジトリより、主流forkの安定版fishパッケージをインストールできます。
最新の開発版はAURより fish-shell-gitAUR[リンク切れ: アーカイブ: aur-mirror]をインストールします。
2011年にオリジナルの開発者によって中止された従来のバージョンはAURより fish-gitAURをインストールします。
fishをデフォルトシェルにするには、chsh -s /usr/bin/fish
を実行します。
入出力
File descriptors
Like other shells, fish lets you redirect input/output streams. This is useful when using text files to save programs output or errors, or when using text files as input. Most programs use three input/output streams, represented by numbers called file descriptors (FD). These are:
- Standard input (FD 0), used for reading (keyboard by default).
- Standard output (FD 1), used for writing (screen by default).
- Standard error (FD 2), used for displaying errors and warnings (screen by default).
リダイレクト
Any file descriptor can be directed to other files through a mechanism called redirection:
Redirecting standard input: $ command < source_file Redirecting standard output: $ command > destination Appending standard output to an existing file: $ command >> destination Redirecting standard error: $ command ^ destination Appending standard error to an existing file: $ command ^^ destination
You can use one of the following as destination
:
- A filename (the output will be written to the specified file).
- An
&
followed by the number of another file descriptor. The output will be written to the other file descriptor. - An
&
followed by a-
sign. The output will not be written anywhere.
Examples:
Redirecting standard output to a file: $ command > destination_file.txt Redirecting both standard output and standard error to the same file: $ command > destination_file.txt ^ &1 Silencing standard output: $ command > &-
パイプ
You can redirect standard output of one command to standard input of the next command. This is done by separating the commands by the pipe character (|
). Example:
cat example.txt | head
You can redirect other file descriptors to the pipe (besides standard output). The next example shows how to use standard error of one command as standard input of another command, prepending standard error file descriptor's number and >
to the pipe:
$ command 2>| less
This will run command
and redirect its standard error to the less
command.
Configuration
User configurations for fish are located at ~/.config/fish/config.fish
. Adding commands or functions to the file will execute/define them when opening a terminal, similar to .bashrc
.
Web interface
The fish prompt and terminal colors can be set with the interactive web interface:
fish_config
Selected settings are written to your personal configuration file. You can also view defined functions and your history.
プロンプト
If you would like fish to display the branch and dirty status when you are in a git directory, you can add the following to your ~/.config/fish/config.fish
:
# fish git prompt set __fish_git_prompt_showdirtystate 'yes' set __fish_git_prompt_showstashstate 'yes' set __fish_git_prompt_showupstream 'yes' set __fish_git_prompt_color_branch yellow # Status Chars set __fish_git_prompt_char_dirtystate '⚡' set __fish_git_prompt_char_stagedstate '→' set __fish_git_prompt_char_stashstate '↩' set __fish_git_prompt_char_upstream_ahead '↑' set __fish_git_prompt_char_upstream_behind '↓' function fish_prompt set last_status $status set_color $fish_color_cwd printf '%s' (prompt_pwd) set_color normal printf '%s ' (__fish_git_prompt) set_color normal end
コマンド補完
fishはmanページより自動補完を生成できます。~/.config/fish/generated_completions/
に補完が書き込まれており、以下を呼び出すことによって生成することができます。
fish_update_completions
また、独自の補完を ~/.config/fish/completions/
に定義できます。/usr/share/fish/completions/
でいくつかの例を見ることができる。
fish開発のポリシーが上流のtarball内に存在する補完を全て含んで以来、pacman, pacman-key, makepkg, cower, pbget, pacmaticのようなArch Linux固有のコマンドのための文脈補完がfishに含まれています。メモリ管理は、リソースへの悪影響を回避するのに十分賢いです。
/etc/profile and ~/.profile compatibility
Since standard POSIX sh
syntax is not compatible with fish, fish will not be able to source /etc/profile
(and thus all *.sh
in /etc/profile.d
) and ~/.profile
If you want fish to source those files, install dash and add this line to your config.fish
:
env -i HOME=$HOME dash -l -c printenv | sed -e '/PATH/s/:/ /g;s/=/ /;s/^/set -x /' | source
an alternative variant will save you one executable invocation by using a builtin command:
env -i HOME=$HOME dash -l -c 'export -p' | sed -e "/PATH/s/'//g;/PATH/s/:/ /g;s/=/ /;s/^export/set -x/" | source
Tips and Tricks
History Substitution
Fish does not implement history substitution (e.g. sudo !!
), and the fish developers have said that they do not plan to. Still, this is an essential piece of many users' workflow. Reddit user, crossroads1112, created a function that regains some of the functionality of history substitution and with another syntax. The function is on github and instructions are included as comments in it. There is a forked version that is closer to the original syntax and allows for command !!
if you specify the command in the helper function.
トラブルシューティング
In Arch, there are a lot of shell scripts written for Bash, and these have not been translated to fish. It is advisable not to set fish as your default shell because of this. The best option is to open your terminal emulator with a command line option that executes fish. For most terminals this is the -e
switch, so for example, to open gnome-terminal using fish, change your shortcut to use:
gnome-terminal -e fish
With LilyTerm and other light terminal emulators that do not support setting the shell it would look like this:
SHELL=/usr/bin/fish lilyterm
Another option is to set fish as the default shell for the terminal in the terminal's configuration or for a terminal profile if your terminal emulator has a profiles feature. This is contrast to changing the default shell for the user which would cause the above mentioned problem.
To set fish as the shell started in tmux, put this into your ~/.tmux.conf
:
set-option -g default-shell "/usr/bin/fish"
Not setting fish as system wide default allows the arch scripts to run on startup, ensure the environment variables are set correctly, and generally reduces the issues associated with using a non-Bash compatible terminal like fish.
If you decide to set fish as your default shell, you may find that you no longer have very much in your path.
You can add a section to your ~/.config/fish/config.fish
file that will set your path correctly on login. This is much like .profile
or .bash_profile
as it is only executed for login shells.
if status --is-login set PATH $PATH /usr/bin /sbin end
Note that you will need to manually add various other environment variables, such as $MOZ_PLUGIN_PATH
. It is a huge amount of work to get a seamless experience with fish as your default shell.
suでbashが起動
もし、suでbashが起動する場合(Bashがデフォルトシェルのため), fishに関数を定義します。
$ funced su function su /bin/su --shell=/usr/bin/fish $argv end $ funcsave su
ログイン時にXを起動
~/.config/fish/config.fish
の一番下に以下を追加します。
# start X at login if status --is-login if test -z "$DISPLAY" -a $XDG_VTNR -eq 1 exec startx -- -keeptty end end
参照
- http://fishshell.com/ - ホームページ
- http://fishshell.com/docs/2.1/index.html - ドキュメント