Fish Shell使用心得

Fish的官网宣传语是 Finally, a command line shell for the 90s。 翻译过来就是 Fish shell 是一个为90后准备的 shell。
有人说:“二逼青年用bash,普通青年用zsh,文艺青年用fish。”[4]
其次由于zsh 的速度实在是太慢,所以决定换用fish,fish速度快,智能提示强大。

本文的亮点在于三点:

1、Fish的入门使用
2、与bash兼容性的方案
3、一个属于自己的Fish主题

Fish配置请参考:https://github.com/iceqing/linux-template-setting/blob/master/fish/config.fish

下面分别介绍

一、fish 入门使用

1 、ubuntu 安装fish

apt-get install software-properties-common
sudo apt-add-repository ppa:fish-shell/release-2
sudo apt-get update
sudo apt-get install fish
#切换到fish
echo /usr/bin/fish | sudo tee -a /etc/shells
sudo chsh -s /usr/bin/fish && fish

其他平台类似,可以根据官网说明来 [1]
fish的鲜明特征在于安装时已经默认集成了很多需要的功能。
比如:

  • 命令行语法高亮,错误会显示红色
  • 智能提示
  • 可以使用web网页的进行终端配置

fish 有智能提示,一个命令一旦输入过一次,会自动显示上一次的全部命令,细心一点会发现会有一层灰色的字体表示上一次的命令,按Ctrl+F或者 右方向键, 即可自动补全,如下图:

智能提示

2、 安装autojump

git clone https://github.com/wting/autojump.git
cd autojump
./install.py

vim ~/.config/fish/config.fish
按照install.py 命令给出的提示来修改config.fish, 添加
if test -f /home/ice/.autojump/share/autojump/autojump.fish; . /home/ice/.autojump/share/autojump/autojump.fish; end

3、网页配置fish

fish_config 可以直接跳出网页版本配置fish的界面。
web版本可以设置主题, 推荐其中的"Tomorrow Night"主题颜色。

image.png

选择想要的主题,然后点击set theme即可设置主题。
在命令里按enter 即可退出web版本的界面。

在prompt里面可以自己选择fish终端的主题。


fish终端的主题

4、插件管理

https://github.com/oh-my-fish/oh-my-fish

omf install thefuck

虽然有fisher这个管理工具,但是目前还不稳定。

5、git 配置

我们只需要配置alias 既可以满足日常git命令的使用。对于终端主题样式,我们可以自行进行配置。(后边有介绍)

# git 相关的配置
alias g "git"
alias gst "git status"
alias grs "git reset --soft"
alias grh "git reset --hard"
alias gb "git branch"
alias gba "git branch -a" 
alias gl "git pull"

二、兼容bash脚本

由于fish 很多不兼容bash的功能导致了很多脚本无法运行,这一点是很多人吐槽fish的地方,我们需要一种方式来运行bash脚本。

比如

arc land --onto `git rev-parse --abbrev-ref HEAD` 

这条命令在fish里无法执行。
我们只需要在前面添加一个bash -c 命令即可,如下所示。

bash -c "arc land --onto `git rev-parse --abbrev-ref HEAD`"

顺手加个alias就更方便了,可以直接在命令行里使用命令arcl

alias arcl bash -c "arc land --onto `git rev-parse --abbrev-ref HEAD`"

对于脚本文件,比如我将需要执行的命令或文件放到repomerge.sh

在~/.config/fish/config.fish添加

alias up "bash -c /usr/bin/repomerge.sh"

然后就可以自由的使用up命令了

配置自己的终端

样式显示如下:

image.png

其中function fish_prompt 函数用于定义fish终端的显示样式。

我们只需要写一个fish_prompt函数即可。集成了git的分支名称以及当前的变化。

显示的样式如下:

image.png

说明:
✔代表当前git项目是干净的。
%1 表示有一个文件未追踪
+1 表示一个文件已暂存

# 终端显示样式的配置
function fish_prompt --description 'Write out the prompt'
    if not set -q __fish_prompt_normal
        set -g __fish_prompt_normal (set_color normal)
    end

    __fish_git_prompt >/dev/null 2>&1

    if git_is_repo
        if not set -q __git_cb
            set __git_cb (set_color blue)" ("(set_color brred)(git branch | grep \* | sed 's/* //') (set_color -o bryellow)(__fish_git_prompt_informative_status)(set_color blue)")"
        end
    end


    if not set -q __fish_prompt_cwd
        set -g __fish_prompt_cwd (set_color $fish_color_cwd)
    end
    printf '%s%s%s%s ' "$__fish_prompt_cwd" (prompt_pwd) "$__fish_prompt_normal" $__git_cb
end

隐藏欢迎语

在confin.sh文件里添加如下函数即可

function fish_greeting
end

其他配置

alias l "ll"
alias dir "dde-file-manager . &"
alias docker "sudo docker"
alias apt "sudo apt"

参考:

  1. 官网
  2. fish 安装 https://launchpad.net/~fish-shell/+archive/ubuntu/release-2
  3. Fish shell 入门教程 (阮一峰) http://www.ruanyifeng.com/blog/2017/05/fish_shell.html
  4. 宇宙第一shell——fish入门 //www.greatytc.com/p/7ffd9d1af788

全部配置如下

# git配置
alias g "git"
alias gst "git status"
alias grs "git reset --soft"
alias grh "git reset --hard"
alias gb "git branch"
alias gba "git branch -a" 
alias gl "git pull"


# 系统相关配置
alias l "ll"
alias dir "dde-file-manager . &"
alias docker "sudo docker"
alias apt "sudo apt"

# 终端显示样式的配置
function fish_prompt --description 'Write out the prompt'
    if not set -q __fish_prompt_normal
        set -g __fish_prompt_normal (set_color normal)
    end

    __fish_git_prompt >/dev/null 2>&1

    if git_is_repo
        if not set -q __git_cb
            set __git_cb (set_color blue)" ("(set_color brred)(git branch | grep \* | sed 's/* //') (set_color -o bryellow)(__fish_git_prompt_informative_status)(set_color blue)")"
        end
    end


    if not set -q __fish_prompt_cwd
        set -g __fish_prompt_cwd (set_color $fish_color_cwd)
    end
    printf '%s%s%s%s ' "$__fish_prompt_cwd" (prompt_pwd) "$__fish_prompt_normal" $__git_cb
end



# 终端提示语配置
function fish_greeting
end

# 判断是否是git仓库的工具函数
function git_is_repo --description 'Check if directory is a repository'
  test -d .git
  or command git rev-parse --git-dir >/dev/null ^/dev/null
end

如果你喜欢在前面加上用户名称可以使用

printf '%s %s%s%s%s ' "$USER" "$__fish_prompt_cwd" (prompt_pwd) "$__fish_prompt_normal" $__git_cb

替换掉上面的

printf '%s%s%s%s ' "$__fish_prompt_cwd" (prompt_pwd) "$__fish_prompt_normal" $__git_cb

本文采用署名-相同方式共享 4.0 国际 (CC BY-SA 4.0),转载请注明出处。

系列文章

1. Fish Shell使用心得
2. Fish Shell 3.0 新功能

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 207,113评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,644评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 153,340评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,449评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,445评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,166评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,442评论 3 401
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,105评论 0 261
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,601评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,066评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,161评论 1 334
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,792评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,351评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,352评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,584评论 1 261
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,618评论 2 355
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,916评论 2 344

推荐阅读更多精彩内容

  • 官网 中文版本 好的网站 Content-type: text/htmlBASH Section: User ...
    不排版阅读 4,367评论 0 5
  • █████╗ ██╗ ██╗███████╗███████╗ ██████╗ ███╗ ███╗████...
    若与阅读 5,510评论 0 18
  • 一、介绍 Fish 是目前所有 shell (bash, zsh, tsh, etc)中我个人认为用得最顺手、最快...
    juniway阅读 7,201评论 1 4
  • feisky云计算、虚拟化与Linux技术笔记posts - 1014, comments - 298, trac...
    不排版阅读 3,815评论 0 5
  • 因缘际会得到一位智者赠予的一张小卡片,初始的时候我还没有太多感触,但是在看第二遍的时候,猛然有些感悟。 卡片的内容...
    孤单不寂寞的行者阅读 284评论 0 1