Powershell热键删除当前行?
我想执行一个热键来删除 powershell 会话中的当前行。这样的事可能吗?
I would like to execute a hotkey that would erase the current line in the powershell session. Is such a thing possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Esc 对我有用
Esc works for me
除了使用Esc清除整行外,还可以使用:
Ctrl+Home从当前位置擦除回上一行。开头,或
Ctrl+End 从当前位置擦除到末尾。
Besides using Esc to clear the whole line, you can also use:
Ctrl+Home to erase from the current position back to the beginning, or
Ctrl+End to erase from the current position to the end.