Ctrl-R 在 csh 中向后搜索 shell 命令
我喜欢 borne shell 中的这个快捷方式,并且想知道是否可以在 csh 或 tsch 中模拟和/或拥有(可能安装附加组件或使用脚本)它,
谢谢
I love this shortcut in borne shell, and want to find out if it is possible to simulate and/or have (perhaps to install an add-on or with a script) it in csh or tsch
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
Try
csh、tcsh 甚至 bash 所拥有的东西就是酷!历史替换。
这将运行以 cc 开头的最后一个命令:
这提供了最后一个命令的参数:
这找到了以 cc 开头的最后一个命令并替换了它的参数:
这找到了最后一个命令中任何地方都有
hello.c
:Something that csh, tcsh, and even bash have is the cool ! history substitution.
This will run the last command starting with
cc
:This supplies the parameters from the last command:
This finds the last command that started with
cc
and substitutes its parameters:This finds the last command that had
hello.c
anywhere in it: