Por que a origem fornece um erro “não é possível executar o arquivo binário”

7

Eu tenho um arquivo pequeno que inicializa uma sessão tmux e cria algumas janelas. Depois de algumas depurações e ajustes, as coisas funcionaram bem até que eu renomeiei o arquivo de texto (com os comandos tmux ) de spam para xset :

$ source xset
bash: source: /usr/bin/xset: cannot execute binary file

Agora, renomei o arquivo novamente e source spam funciona novamente, mas estou me perguntando por que isso acontece. O arquivo está no meu diretório pessoal e não no /usr/bin .

    
por Shawn 28.08.2014 / 10:11

2 respostas

10

A fonte de comando interna bash procura primeiro o nome do arquivo no PATH, a menos que haja uma barra ( / ) no nome do arquivo. xset é um arquivo executável no seu PATH, daí o problema.

Você pode executar source ./xset ou alterar a opção sourcepath para off com:

shopt -u sourcepath

Do bash man-page:

      source filename [arguments]
          Read and execute commands from filename  in  the  current  shell
          environment  and return the exit status of the last command exe‐
          cuted from filename.  If filename does not contain a slash, file
          names  in  PATH  are used to find the directory containing file‐
          name.  The file searched for in PATH  need  not  be  executable.
          When  bash  is  not  in  posix  mode,  the  current directory is
          searched if no file is found in PATH.  If the sourcepath  option
          to  the  shopt  builtin  command  is turned off, the PATH is not
          searched.  If any arguments are supplied, they become the  posi‐
          tional  parameters  when  filename  is  executed.  Otherwise the
          positional parameters are unchanged.  The return status  is  the
          status  of  the  last  command exited within the script (0 if no
          commands are executed), and false if filename is  not  found  or
          cannot be read.
    
por 28.08.2014 / 10:13
3

O comando source :

Read and execute commands from the filename argument in the current shell context. If filename does not contain a slash, the PATH variable is used to find filename.

Esse comportamento está definido (para . , seu alias) por POSIX . Por quê? Bem, você pode colocar scripts de configuração de origem dentro de PATH e acessá-los sem um caminho qualificado. Para acessar o arquivo desejado, forneça um caminho absoluto ou relativo:

source ./xset
source ~/xset
source /home/shawn/xset

Todos os itens acima funcionarão conforme esperado inicialmente. Você também pode desativar sourcepath com shopt .

    
por 28.08.2014 / 10:15

Tags