Como evitar o erro 'comando não encontrado' ao redefinir a configuração bash com uma ligação de chave?

1

Estou usando bash version 4.3.48 :

$ bash --version
GNU bash, version 4.3.48(1)-release (x86_64-pc-linux-gnu)

Estou tentando definir uma ligação de chave, usando a seqüência de teclas C-x r , para recarregar a configuração de bash + readline . Graças a @Gilles , incluí este código no meu ~/.bashrc :

bind    '"\e[99i~": re-read-init-file'
bind -x '"\e[99b~": . ~/.bashrc'
bind    '"\C-xr":   "\e[99i~\e[99b~"'

Funciona, exceto que bash escreve uma mensagem de erro quando alcanço C-x r , o que não entendo:

\udccf\udccf\udccf\udccf\udccf\udccf: command not found

Eu pensei que talvez fosse devido a uma interação com algumas outras configurações que eu alterei, então eu deletei tudo em ~/.bashrc , exceto pelas 3 linhas que definem a ligação de chave C-x r .

Mas ainda há uma mensagem de erro:

: command not found

Então, tentei um bashrc mais simples com apenas uma ligação de chave:

bind -x '"\C-xr": . ~/.bashrc'

Desta vez, acertar C-x r produz o erro:

\udccf
      : command not found

No entanto, se eu comentar a linha bind -x '"\C-xr": . ~/.bashrc' no meu arquivo bashrc , e eu executar o comando em um bash shell interativo, então tudo funcionará bem. Nenhuma mensagem de erro e a configuração é devidamente re-sourced.

Então, eu acho que devo escrever um guarda em torno desta ligação de chave para evitar que bash redefina-a, se já tiver sido feito. Mas eu não sei como testar a existência de uma ligação de chave. Além disso, gostaria de entender melhor o que acontece com esses erros.

Eu não sei se é importante, mas eu nunca inicio bash diretamente, eu sempre inicio se de zsh . Quando eu quero testar algum comando que eu vou escrever em um script bash, eu abro um terminal (usando zsh como o shell padrão), então eu executo bash de lá. Então, talvez bash herde alguma variável de ambiente de zsh que causa a primeira mensagem de erro?

Além disso, como foi perguntado na seção de comentários, aqui está a saída de hexdump -C ~/.bashrc com apenas as três combinações de teclas:

00000000  62 69 6e 64 20 20 20 20  27 22 5c 65 5b 39 39 69  |bind    '"\e[99i|
00000010  7e 22 3a 20 72 65 2d 72  65 61 64 2d 69 6e 69 74  |~": re-read-init|
00000020  2d 66 69 6c 65 27 0a 62  69 6e 64 20 2d 78 20 27  |-file'.bind -x '|
00000030  22 5c 65 5b 39 39 62 7e  22 3a 20 2e 20 7e 2f 2e  |"\e[99b~": . ~/.|
00000040  62 61 73 68 72 63 27 0a  62 69 6e 64 20 20 20 20  |bashrc'.bind    |
00000050  27 22 5c 43 2d 78 72 22  3a 20 20 20 22 5c 65 5b  |'"\C-xr":   "\e[|
00000060  39 39 69 7e 5c 65 5b 39  39 62 7e 22 27 0a        |99i~\e[99b~"'.|
0000006e

Aqui está o despejo hexadecimal com um bashrc contendo apenas bind -x '"\C-xr": . ~/.bashrc' :

00000000  62 69 6e 64 20 2d 78 20  27 22 5c 43 2d 78 72 22  |bind -x '"\C-xr"|
00000010  3a 20 2e 20 7e 2f 2e 62  61 73 68 72 63 27 0a     |: . ~/.bashrc'.|
0000001f

E aqui está meu bashrc completo:

case "$-" in
  *i*) ;;
  *) return ;;
esac
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
  debian_chroot=$(cat /etc/debian_chroot)
fi
PS1="${debian_chroot:+($debian_chroot)}\[3[01;32m\]\u@\h\[3[00m\]:\[3[01;34m\]\w\[3[00m\]\$ "
alias cdr='cd "$(ls -dt */ | head -1)"'
export HISTCONTROL="ignoreboth:erasedups"
export HISTIGNORE="clear:history:"
export HISTFILE="${HOME}/.bash_eternal_history"
export HISTFILESIZE=
export HISTSIZE=
export HISTTIMEFORMAT="[%F %T] "
export PROMPT_COMMAND="history -a; history -c; history -r; ${PROMPT_COMMAND}"
cd() {
  if [ $# -eq 2 ]; then
    builtin cd "${PWD/$1/$2}"
  elif [ $# -eq 1 ]; then
    builtin cd "$1"
  else
    builtin cd
  fi
}
shopt -s autocd
shopt -s checkwinsize
shopt -s globstar
shopt -s histappend
shopt -s histreedit
shopt -s histverify
. /usr/share/bash-completion/bash_completion
. ~/.fzf.bash
. ~/.shrc
bind '" ": magic-space'
bind '"\C-xc": "\C-a\C-kvimdiff <() <()\C-b\C-b\C-b\C-b\C-b"'
bind '"\C-xf":  character-search'
bind '"\C-xF":  character-search-backward'
bind    '"\e[99i~": re-read-init-file'
bind -x '"\e[99b~": . ~/.bashrc'
bind    '"\C-xr":   "\e[99i~\e[99b~"'
bind '"\C-x\C-s": "sudo !!\C-m\C-m"'
bind -x '"\C-x\C-t": fzf-file-widget'
bind '"\C-t": transpose-chars'
bind '"\C-x\C-v": "\C-e | vim -R -\C-m"'
bind '"\em": "\C-aman \ef\C-k\C-m"'
bind '"\e\C-b":  "\C-e >/dev/null 2>&1 &\C-m"'

Editar:

Eu tentei quebrar o comando . ~/.bashrc dentro de uma função e chamar o último na ligação de chave. Usando a seguinte sintaxe:

bind    '"\e[99i~": re-read-init-file'
bind -x '"\e[99b~": MyFunc'
bind    '"\C-xr":   "\e[99i~\e[99b~"'
MyFunc () {
  . ~/.bashrc
}

E descobri que o erro foi influenciado pelo tamanho do nome da função. Aqui está uma tabela, em que a coluna da esquerda contém nomes diferentes para a função e a coluna da direita contém as mensagens de erro (se houver):

┌───────────────────┬─────────────────────────────────────────────────────────────────────────────────────────────┐
│ a                 │ \udc99: command not found                                                                   │
│ ab                │ \udc92: command not found                                                                   │
│ abc               │ : command not found                                                                         │
│ abcd              │ \udcdf\udcdf\udcdf\udcdf\udcdf\udcdf\udcdf\udcdf\udcdf\udcdf\udcdf\udcdf: command not found │
│ abcde             │ \udcdf\udcdf\udcdf\udcdf\udcdf\udcdf\udcdf\udcdf\udcdf\udcdf\udcdf: command not found       │
│ abcdef            │ \udcdf\udcdf\udcdf\udcdf\udcdf\udcdf\udcdf\udcdf\udcdf\udcdf: command not found             │
│ abcdefg           │ no error                                                                                    │
│ abcdefgh          │ : command not found                                                                         │
│ abcdefghi         │ \udcdf\udcdf\udcdf\udcdf\udcdf\udcdf\udcdf: command not found                               │
│ abcdefghij        │ \udcdf\udcdf\udcdf\udcdf\udcdf\udcdf: command not found                                     │
│ abcdefghijk       │ \udcdf\udcdf\udcdf\udcdf\udcdf: command not found                                           │
│ abcdefghijkl      │ \udcdf\udcdf\udcdf\udcdf: command not found                                                 │
│ abcdefghijklm     │ \udcdf\udcdf\udcdf: command not found                                                       │
│ abcdefghijklmn    │ \udcdf\udcdf: command not found                                                             │
│ abcdefghijklmno   │ \udcdf: command not found                                                                   │
│ abcdefghijklmnop  │ : command not found                                                                         │
│ abcdefghijklmnopq │ no error                                                                                    │
└───────────────────┴─────────────────────────────────────────────────────────────────────────────────────────────┘

Eu também tentei uma função diferente em que reconectei a entrada do comando . ~/.bashrc ao terminal (inspiração de aqui ):

bind    '"\e[99i~": re-read-init-file'
bind -x '"\e[99b~": MyFunc'
bind    '"\C-xr":   "\e[99i~\e[99b~"'
MyFunc () {
  . ~/.bashrc </dev/tty
}

Aqui estão os resultados:

┌──────────────────────┬──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
│ a                    │ 9}: command not found                                                                                                │
│ ab                   │ \udcdd: command not found                                                                                            │
│ abc                  │ : command not found                                                                                                  │
│ abcd                 │ no error                                                                                                             │
│ abcde                │ no error                                                                                                             │
│ abcdef               │ no error                                                                                                             │
│ abcdefg              │ no error                                                                                                             │
│ abcdefgh             │ : command not found                                                                                                  │
│ abcdefghi            │ \udcdf\udcdf\udcdf\udcdf\udcdf\udcdf\udcdf: command not found                                                        │
│ abcdefghij           │ \udcdf\udcdf\udcdf\udcdf\udcdf\udcdf: command not found                                                              │
│ abcdefghijk          │ \udcdf\udcdf\udcdf\udcdf\udcdf: command not found                                                                    │
│ abcdefghijkl         │ \udcdf\udcdf\udcdf\udcdf: command not found                                                                          │
│ abcdefghijklm        │ \udcdf\udcdf\udcdf: command not found                                                                                │
│ abcdefghijklmn       │ \udcdf\udcdf: command not found                                                                                      │
│ abcdefghijklmno      │ \udcdf: command not found                                                                                            │
│ abcdefghijklmnop     │ : command not found                                                                                                  │
│ abcdefghijklmnopq    │ no error                                                                                                             │
│ abcdefghijklmnopqr   │ no error                                                                                                             │
│ abcdefghijklmnopqrs  │ no error                                                                                                             │
│ abcdefghijklmnopqrst │ \udccf\udccf\udccf\udccf\udccf\udccf\udccf\udccf\udccf\udccf\udccf\udccf\udccf\udccf\udccf\udccf$: command not found │
└──────────────────────┴──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
    
por user547381 11.06.2017 / 11:34

0 respostas