优秀的编程知识分享平台

网站首页 > 技术文章 正文

一键 fxxk,代码修复神器拯救你(错误代码修复工具)

nanyue 2024-10-15 11:39:01 技术文章 2 ℃

作者 | 一一

出品 | AI科技大本营(ID: rgznai100)

在成为一个合格的开发者之前,大多数人一般都经历过被命令行反复“fuck”蹂躏。当然,改代码改不动了,你的内心也是“无 fuck 可说”,尤其在检查半天之后发现这个 bug 可能只是拼写出现了错误。

这时候,你应该万分期待有个 AI 工具进行智能处理或者自动化的代码修复工具。

在 GitHub 上,就有这样一个代码修复万能神器的项目,它可以纠正你之前的控制台命令中的错误,一键执行,随后一路畅通。

目前,这个名叫 The Fuck 的抒情性名称项目在 GitHub 上已收获 40564 个 Star,2011 个 fork,可以说拥有超高人气。

这个工具的用法简单高效,当你在 Terminal 里打错一个命令时,不用修改后重新打一遍,而是直接写个 fuck,该工具就会自动帮你修证然后执行程序。站在错误命令行的对面,这词天生大有“去你的”的压迫性气势,听起来是不是既解气又畅快?

具体是如何纠正代码错误的?举几个例子:

比如忘记输入 sudo,只执行 apt-get install vim,它就会提示 permission denied,这时执行 fuck,就会自动帮你执行 sudo apt-get install vim。

? 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,就会提示 The current branch master has no upstream branch,随后运行 fuck,则自动执行 git push --set-upstream origin master。

? 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,那么再次祭出 fuck,就会自动执行 python,再也不用为拼写错误费神了。

? 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)
... 

它也能进行选项修正。若执行 git brnch,就会显示 not a git command,这时果断 fuck,就会自动执行 git branch 。

? git brnch
git: 'brnch' is not a git command. See 'git --help'.
Did you mean this?
 branch
? fuck
git branch [enter/↑/↓/ctrl+c]* master 

执行 lein rpl 时会提示 not a task,同样 fuck 一出,通畅无阻,它会自动执行 lein repl。一招致胜,厉害吗?

? lein rpl'rpl' is not a task. See 'lein help'.
Did you mean this?
 repl
? fuck
lein repl [enter/↑/↓/ctrl+c]
nREPL server started on port 54848 on host 127.0.0.1 - nrepl://127.0.0.1:54848
REPL-y 0.3.1
... 

如果你不担心盲目运行更正后的命令, 设置 require_confirmation 可以禁用 :

? 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
[sudo] password for nvbn:
Reading package lists... Done
... 

对了,在知乎有开发者朋友在这里想要友情提醒一下:执行的时候千万不要读出来,用习惯了容易成为口头禅......用着就会发现,每一个需要修改的命令行你都会不由自主想使 fuck。

还有个问题你可能想问,The Fuck 的运行速度会不会太慢了?在这里你感受下的即时模式。(https://github.com/nvbn/thefuck#experimental-instant-mode

The Fuck 的默认行为需要时间来重新运行以前的命令。在即时模式下,The Fuck 通过使用脚本记录输出,然后读取日志来节省时间。

目前,即时模式仅支持使用 bash 或 zsh 的 Python 3,还需禁用 zsh 的自动更正功能才能正常使用。

要启用即时模式,添加 --enable-experimental-instant-mode 到别名初始化 .bashrc,.bash_profile 或 .zshrc。

例如:

eval $(thefuck --alias --enable-experimental-instant-mode) 

有没有想要试一试的冲动?接下来,将为你介绍 The Fuck 如何安装?具体又有哪些要求?

要求

  • python (3.4+)
  • pip
  • python-dev

安装

可以安装 The Fuck 的系统有很多,你可以在 OS X, Homebrew,或 Linux 上的 Linuxbrew 中安装 The Fuck:

brew install thefuck

在 Ubuntu / Mint 上使用以下命令安装 The Fuck:

sudo apt update
sudo apt install python3-dev python3-pip python3-setuptools
sudo pip3 install thefuck 

在 FreeBSD 上使用以下命令进行安装:

sudo portsnap fetch updatecd /usr/ports/misc/thefuck && sudo make install clean

在 ChromeOS 的 chromebrew 中使用以下命令安装:

crew install thefuck 

在其他系统,使用 pip 进行安装:

pip install thefuck

或者,你也可以使用 OS package 管理器(OS X, Ubuntu, Arch)

#建议使用 .bash_profile, .bashrc,.zshrc 命令或者其他启动脚本:

eval $(thefuck --alias)# You can use whatever you want as an alias, like for Mondays:eval $(thefuck --alias FUCK) 

或者使用 shell 配置(Bash,Zsh,Fish,Powershell,tcsh)。

更改仅在新的 shell 会话中可用。如果要立即进行更改,请运行 source ~/.bashrc(或者像 .zshrc 这样的 shell 配置文件)。

要在没有确认的情况下运行固定命令,请使用 --yeah 选项(或者 -y):

fuck --yeah 

如果要以递归方式修复命令,请使用 -r 选项:

fuck -r 

如何运转?

The Fuck 整体的运转依靠的是将上一个命令与规则进行匹配。如果找到匹配项,则使用匹配的规则创建新命令并执行。另外,你也可以创建属于自己的规则,还可以在文件中更改几个 The Fuck 参数。

默认情况下启用的规则大约有 120 个,以下给出 5 个命令的示例:

  • adb_unknown_command—像 adb logcta 那样修复拼写错误的命令;
  • ag_literal—需要建议时给 ag 添加 -Q ;
  • aws_cli—像 aws dynamdb scan 那样修复拼写错误的命令 ;
  • az_cli—像 az providers 那样修复拼写错误的命令;
  • cargo—替换 cargo,运行 cargo build。

默认情况下,仅在特定平台上启用的规则有 15 个,以下列出 3 个示例:

  • apt_get—如果还没有安装,则从 apt 安装应用程序(需要 python-commandnotfound/ python3-commandnotfound);
  • apt_invalid_operation—修复无效 apt 和 apt-get calls,如 apt-get isntall vim;
  • brew_cask_dependency—安装 cask 依赖项。

以下命令与 The Fuck 捆绑在一起,但默认情况下不启用:

  • git_push_force—给--force-with-lease 添加一个 git push(可能与 git_push_pull 冲突);
  • rm_root—给 rm -rf / 命令添加 --no-preserve-root。

如果你要添加属于自己的规则,在 ~/.config/thefuck/rules 创建一个 your-rule-name.py 文件。规则文件必须包含两个函数:

match(command: Command) -> bool
get_new_command(command: Command) -> str | list[str]

此外,规则可以包含可选功能:

side_effect(old_command: Command, fixed_command: str) -> None

规则还可以包含可选变量 enabled_by_default,requires_output 和 priority。

Command 有三个属性:script,output 和 script_parts。你的规则不应该改变 Command。

以下给出使用 sudo 命令运行脚本的简单示例规则:

def match(command):
return ('permission denied' in command.output.lower() 
or 'EACCES' in command.output)
def get_new_command(command):
return 'sudo {}'.format(command.script)#
Optional:enabled_by_default = True
def side_effect(command, fixed_command):
 subprocess.call('chmod 777 .', shell=True)
priority = 1000 # Lower first, default is 1000
requires_output = True

走起来,安装一个试试?不爽就扔个 fuck。

GitHub 链接:https://github.com/nvbn/thefuck


Tags:

最近发表
标签列表