我想使用fc
命令。但是当我输入fc
bash 时,我得到
Command 'iv' not found, but can be installed with:
sudo apt install openimageio-tools
这很奇怪,因为我甚至没有输入iv
。此外,建议的包似乎是一个图像处理库,这与我想要的相差甚远。
这是怎么回事?我该如何使用fc
?
编辑:
$ type -a fc
fc is a shell builtin
$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=18.04
DISTRIB_CODENAME=bionic
DISTRIB_DESCRIPTION="Ubuntu 18.04.2 LTS"
$ bash --version
GNU bash, version 4.4.19(1)-release (x86_64-pc-linux-gnu)
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software; you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
答案1
原来我的 有一个打字错误.bashrc
。
它有过
EDITOR=iv
在其中(而不是EDITOR=vi
),因此fc
尝试通过命令编辑我的最后一个命令iv
。因此出现错误消息。