命令编辑
如果要对一个已输入的命令进行修改,可以使用 ^a(ctrl + a)或 ^e(ctrl + e)将光标快速移动到命令的开头或命令的末尾。
还可以使用 ^ 字符实现对上一个命令的文本替换并重新执行命令,例如 ^before ^ after^ 相当于把上一个命令中的 before 替换为 after 然后重新执行一次。
$ eho hello world <== 错误的命令
Command 'eho' not found, did you mean:
command 'echo' from deb coreutils
command 'who' from deb coreutils
Try: sudo apt install <deb name>
$ ^e^ec^ <== 替换
echo hello world
hello world
技巧引用自“良许Linux”
网友评论