Comportamento de fonte inesperada (mis)

0

Eu tenho um arquivo com meu endereço do Raspberry Pi chamado pi . Está no meu diretório pessoal.

pi=192.168.0.173

Para se conectar ao Pi, eu faria isso no meu diretório pessoal:

. pi && ssh pi@$pi

Funcionou. Então eu melhorei com este script no meu ~/bin :

#!/bin/bash
. ~/pi
ssh pi@$pi

Agora só faço isso:

pi

Claro que funciona. Mas às vezes eu preciso do Pi IP. Então faço isso no meu diretório pessoal:

. pi

Mas, em vez de pesquisar o arquivo, estou me conectando ao meu Pi. Para tornar as coisas mais estranhas,

$ . pi && echo ok
pi@raspberrypi:~ $ logout
Connection to 192.168.0.173 closed.
ok

Eu obtenho o mesmo comportamento em todos os zsh , dash e sh . Alguém poderia explicar?

    
por Tomasz 16.02.2017 / 21:16

1 resposta

0

man sabe tudo ... Um trecho do Bash.

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,
      filenames  in  PATH  are  used  to find the directory containing
      filename.  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 16.02.2017 / 21:58