web-dev-qa-db-fra.com

Qu'est-ce que le premier '.' signifie dans '. ~ / .bashrc '?

J'ai vu un article sur comment corriger votre alias dans .bashrc.

Et il dit qu'après avoir mis votre alias dans .bashrc, vous devez utiliser:

. ~/.bashrc

Je ne comprends pas très bien ce que le premier point ('.') Fait ici. Quelle est sa fonction et comment s'appelle-t-il?

11
Zen

Intéressant ... le nom semble être dot-command, dans votre cas, il inclut le fichier .bashrc dans le programme Shell appelant (dans votre cas, votre environnement bash). Comme vous l'appelez depuis la ligne de commande, il met à jour vos variables d'environnement, car les variables sont définies dans .bashrc.

echo "FOO=bar" > test
echo $FOO

aucun résultat, variable env non définie. Mais après avoir source le fichier "test":

. test

la variable env FOO est définie et

echo $FOO

entraîner la sortie de

bar

J'ai trouvé les informations suivantes ici :

La création d'un fichier (commande par points) importe le code dans le script, en l'ajoutant au même effet (même effet que la directive #include dans un programme C). Le résultat net est le même que si les lignes de code "générées" étaient physiquement présentes dans le corps du script. Ceci est utile dans les cas où plusieurs scripts utilisent un fichier de données commun ou une bibliothèque de fonctions commune.

Voir aussi ceci question . En bash, . est identique à source.

5
noleti

Si vous voulez vérifier quelque chose dans bash, utilisez type et man.

Dans votre cas, vous voulez savoir ce qui est.

$ type .
. is a Shell builtin

Shell intégré signifie que . est à l'intérieur de bash Shell. Vous trouverez des informations sur les fonctions intégrées au shell dans la page de manuel bash. Il y a une grande section Shell BUILTIN COMMANDS

$ 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.
20
c0rp