在 ksh 中执行最后一个命令

发布于 2024-11-16 16:39:21 字数 114 浏览 4 评论 0原文

我正在运行 Solaris,我想知道如何使用 ksh 运行最后一个命令。 我知道在 bash/sh 中你可以做“!!”代表最后一个命令,!-N 代表“N 减去最后一个命令”。 KSH 中的等价物是什么? 先感谢您。

I am running Solaris and I was wondering how to run the last command with ksh.
I know that in bash/sh you can do "!!" for the last command and !-N for "N minus the last command."
What is the equivalent in KSH?
Thank you in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七堇年 2024-11-23 16:39:21

r,或Control + P。 Korn shell 不实现 csh/bash 风格的历史记录,但您可以使用 fc (r code> 是 fc 调用的别名),或者使用 set -o emacsset -o vi 您可以使用编辑器命令进行搜索并修改之前的命令。

r, or Control + P. Korn shell doesn't implement csh/bash-style history, but you can manipulate the command history with fc (r is an alias for an fc invocation), or with set -o emacs or set -o vi you can use editor commands to search and modify previous commands.

烙印 2024-11-23 16:39:21

使用 fc -s (上次执行的命令的某个字母),

就像上次执行的命令是 cat example.txt

使用 fc -s ca

Use fc -s (SOME letter of last executed command)

like if the last executed command was cat sample.txt

use fc -s ca

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文