원격 컴퓨터의 내 Linux 계정에는 다음과 같은 사전 정의가 제공됩니다. .inputrc
"\e[1~": beginning-of-line
"\e[4~": end-of-line
“\e[5~”: history-search-backward
“\e[6~”: history-search-forward
"\e[3~": delete-char
"\e[2~": quoted-insert
"\e[5C": forward-word
"\e[5D": backward-word
"\e\e[C": forward-word
"\e\e[D": backward-word
set completion-ignore-case on
set bell-style visible
set expand-tilde on
set convert-meta off
set input-meta on
set output-meta on
set show-all-if-ambiguous on
set visible-stats on
나는 GNU bash는 설명서를 읽고 있습니다 주제에를 ,하지만 난 문자 시퀀스가 무엇인지 설명하는 섹션을 찾을 수 없어 \e[1~
, \e[5C
, \e\e[D
, 등을 의미합니다.
내가 어딘가에 읽을 생각 \e
수단 meta character
(내가 생각하는 Alt
내 키보드),하지만 무슨 일이 다른 제어 문자를 이해하지 못하고 [
, ~
, 5D
등을 의미한다.
누구든지 주제에 대한 좋은 참조를 알고 있습니까?