Por que a origem deu um erro "não é possível executar o arquivo binário"

10

Eu tenho um arquivo pequeno que inicializa uma tmuxsessão e cria algumas janelas. Após algumas depurações e ajustes, tudo funcionou bem até que eu renomeie o arquivo de texto (com os tmuxcomandos) de spampara xset:

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

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

Shawn
fonte
Existe um binário chamado xset. Tente source ./xset.
Faheem Mitha 28/08

Respostas:

11

a bashfonte de comando interna, primeiro procura o nome do arquivo em 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 ./xsetou alterar a opção sourcepath para off com:

shopt -u sourcepath

Na bashpágina de manual:

      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.
Anthon
fonte
5

O sourcecomando irá :

Leia e execute comandos do argumento filename no contexto atual do shell. Se o nome do arquivo não contiver uma barra, a PATHvariável será usada para encontrar o nome do arquivo .

Esse comportamento é definido (para ., seu alias) pelo POSIX . Por quê? Bem, você pode inserir scripts de configuração acessíveis PATHe 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 o esperado inicialmente. Você também pode desativar sourcepathcom shopt.

Michael Homer
fonte