O que o primeiro '.' significa em '. ~ / .bashrc '? [duplicado]

11

Eu vi uma postagem sobre como corrigir seu alias em .bashrc .

E ele diz que depois de colocar seu alias em .bashrc , você precisa usar:

. ~/.bashrc

Eu não entendo muito bem o que o primeiro ponto ('.') faz aqui. Qual é a sua função e como é chamado?

    
por Zen 16.07.2014 / 06:15

2 respostas

5

Interessante ... o nome parece ser dot-command , no seu caso ele inclui o .bashrc no programa shell chamador (no seu caso, seu ambiente bash). Como você está chamando a partir da linha de comando, ele atualiza suas variáveis ambientais, pois as variáveis são definidas em .bashrc.

echo "FOO=bar" > test
echo $FOO

sem resultado, variável env não definida. Mas depois você fonte do arquivo "teste":

. test

a variável env FOO é definida e

echo $FOO

resulta na saída de

bar

Encontrei as seguintes informações aqui :

O fornecimento de um arquivo (dot-command) importa o código para o script, anexando ao script (mesmo efeito da diretiva #include em um programa C). O resultado líquido é o mesmo que se as linhas de código "originadas" estivessem fisicamente presentes no corpo do script. Isso é útil em situações em que vários scripts usam um arquivo de dados ou biblioteca de funções comum.

Além disso, veja esta pergunta . No bash, . é o mesmo que source .

    
por noleti 16.07.2014 / 06:25
20

Se você quiser verificar algo no bash, use type e man .

No seu caso, você quer saber o que é.

$ type .
. is a shell builtin

shell builtin significa que . está dentro de bash shell . Você pode encontrar informações sobre builtins de shell na página de manual bash . Há uma grande seção COMANDOS SHELL BUILTIN

$ man bash

SHELL BUILTIN COMMANDS
       Unless otherwise noted, each builtin command documented in this section
       as accepting options preceded by - accepts -- to signify the end of the
       options.   The  :, true, false, and test builtins do not accept options
       and do not treat -- specially.  The exit, logout, break, continue, let,
       and  shift builtins accept and process arguments beginning with - with‐
       out requiring --.  Other builtins that accept  arguments  but  are  not
       specified  as accepting options interpret arguments beginning with - as
       invalid options and require -- to prevent this interpretation.
       : [arguments]
              No effect; the command does nothing beyond  expanding  arguments
              and  performing any specified redirections.  A zero exit code is
              returned.

        .  filename [arguments]
       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 c0rp 16.07.2014 / 08:38