linux中fuck一下,再也不用担心敲错了

2022-03-14 09:00:05 admin
相信大家每个人都有敲错过命令的时候,把python 输入成 puthon. 手速过快把ls -alh 输入成 ls a-lh等等等,这时候是不是想拍一下键盘说一声fuck.
有一个同事就开发了一个thefuck的项目,可纠正先前控制台命令中的错误。让我们能愉快的工作下去.

安装

在 macOS 或 Linux 上,您可以通过Homebrew安装The Fuck:
brew install thefuck
在 FreeBSD 上,使用以下命令安装The Fuck:
pkg install thefuck
Centos系统/Ubuntu系统
pip install thefuck

配置

#编辑bashrc配置文件
vim ~/.bashrc
#在文件尾加入一行给thefuck取别名fuck
eval "$(thefuck --alias fuck)"
#使生效
source ~/.bashrc

案例

Ubuntu安装vim

忘记加sudo,fuck一下就好了.
apt-get install vim
E: Could not open lock file /var/lib/dpkg/lock - open (13: Permission denied)
E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?
➜ fuck
sudo apt-get install vim [enter/↑/↓/ctrl+c]
[sudo] password for nvbn:
Reading package lists... Done

git 首次push

➜ git push
fatal: The current branch master has no upstream branch.
To push the current branch and set the remote as upstream, use
    git push --set-upstream origin master
➜ fuck
git push --set-upstream origin master [enter/↑/↓/ctrl+c]
Counting objects: 9, done.
...

python敲成puthon

➜ puthon
No command 'puthon' found, did you mean:
 Command 'python' from package 'python-minimal' (main)
 Command 'python' from package 'python3' (main)
zsh: command not found: puthon
➜ fuck
python [enter/↑/↓/ctrl+c]
Python 3.4.2 (default, Oct  8 2014, 13:08:17)
...

thefuck原理

其实TheFuck的原理就是规则匹配(正则表达式),如果找到匹配规则的命令,则创建一个命令给用户选择或直接运行。
cat_dir - 当你尝试cat目录的时候,用ls替换cat;
cd_correction – 拼写检查和纠正失败的cd命令;
cd_mkdir – 在进入目录之前创建目录;
cd_parent – 更改 cd.. 为cd ..;
dry – 修复类似的重复问题:git git push;
fix_alt_space – 用空格字符代替Alt + Space;
# 还有很多可以参考https://github.com/nvbn/thefuck#how-it-works

推荐↓↓↓