Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 617 Bytes

terminal.md

File metadata and controls

23 lines (17 loc) · 617 Bytes

terminal终端

光标移动

  • 移动: 左|下|上|右 ctrl+b(ack) | ctrl+n(ext) | ctrl+p(rev) | ctrl+f(orward)
  • 移动一个单词: alt+b | alt+f
  • 首: ctrl+a
  • 尾: ctrl+e

删除快捷键:

  • alt+d: 删除光标右边的单词
  • ctrl+w: 删除当前光标左边的单词

清屏: ctrl+l

连续执行命令

sleep 5 && echo end
(exit 20) && echo "不会出现"  # 遇到报错就直接结束