Bash

Control + L 不清屏

  • January 30, 2018

當我嘗試在 OSX 上清除終端螢幕時:

computer@ ~ () $ ^L

當我Enter在那之後點擊它時,它只會顯示:

-bash:
  : command not found

關於這是如何發生的任何想法?

.bash_profile.profile, 和.bashrc是空的。

重映射控制:

bind -x '"\C-l": clear'

我通常有一個~/.inputrc放置以下綁定的地方

"\C-p":previous-history
"\C-n":next-history
"\C-a.":beginning-of-line
"\C-e.":end-of-line
"\C-l":clear-screen

引用自:https://unix.stackexchange.com/questions/141228