$ whatis source
source: nothing appropriate.
$ man source
No manual entry for source
$ source
bash: source: filename argument required
source: usage: source filename [arguments]
Il existe et il est exécutable. Pourquoi n'y a-t-il pas de documentation à ce sujet dans Ubuntu? Qu'est ce que ça fait? Comment puis-je installer la documentation à ce sujet?
source
est une commande intégrée du shell bash qui exécute le contenu du fichier transmis en tant qu'argument,dans le shell actuel. Il a un synonyme dans .
(point).
Syntaxe
. filename [arguments] source filename [arguments]
Faites attention! ./
et source
sont pas tout à fait les mêmes .
./script
exécute le script en tant que fichier exécutable, en lançant un new Shell pour l'exécutersource script
lit et exécute les commandes du nom de fichier dans shell actuel environmentRemarque: ./script
n'est pas . script
, mais . script
== source script
Il est utile de connaître la commande 'type':
> type source
source is a Shell builtin
chaque fois que quelque chose est construit dans un shell, il est temps de faire man bash
.
. (un point) est une commande intégrée du shell - qui exécute les commandes à partir d'un fichier passé en argument, dans le Shell actuel. "source" est un synonyme de ".".
De la page de manuel Bash:
. 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, 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.
"source" est la version longue de "." commander. Sur l'invite, on peut faire:
source ~/.bashrc
pour recharger votre réglage (modifié?) de bash pour le bash en cours.
La version courte serait:
. ~/.bashrc
La page de manuel:
. 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 executed from filename. If
filename does not contain a slash, file names 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 short
builtin command is turned off, the PATH is not searched. If any arguments
are supplied, they become the positional 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.
La commande source
exécute le script fourni (l’autorisation exécutable est non obligatoire) dans l’environnement Shell current, tandis que ./
exécute le script executable fourni dans un new Coquille.
La commande source
a un synonyme . filename
.
Pour plus de clarté, jetez un coup d’œil au script suivant, qui définit l’alias.
#! /bin/bash
alias myproject='cd ~/Documents/Projects/2015/NewProject'
Nous avons maintenant deux choix pour exécuter ce script. Mais avec only une option, l’alias souhaité pour le shell actuel peut être créé entre ces deux options.
./make_alias
Rendre le script exécutable en premier.
chmod +x make_alias
./make_alias
alias
**nothing**
Oups! Alias est parti avec le nouveau Shell.
Allons avec la deuxième option.
source make_alias
source make_alias
ou
. make_alias
alias
alias myproject='cd ~/Documents/Projects/2015/NewProject'
Yeah L'alias est défini.
En cas de doute, la meilleure chose à faire est d'utiliser la commande info
:
[root@abc ~]# info source
BASH 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, 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.
Tapez la commande "source d'aide" dans votre shell.
Vous obtiendrez une sortie comme ceci:
source: source filename [arguments]
Execute commands from a file in the current Shell.
Read and execute commands from FILENAME in the current Shell. The
entries in $PATH are used to find the directory containing FILENAME.
If any ARGUMENTS are supplied, they become the positional parameters
when FILENAME is executed.
Exit Status:
Returns the status of the last command executed in FILENAME; fails if
FILENAME cannot be read.
Il convient de noter que bien qu’il s’agisse d’une commande impressionnante, ni source
ni son raccourci de .
ne seraient source plus d’unfichier, ce qui signifie
source *.sh
ou
. script1.sh script2.sh
va pastravail.
Nous pouvons nous replier sur des boucles for
, mais le programme exécutera plusieurs fois l’exécutable, en créant plusieurs commandes ou en émettant plusieurs.
Conclusion: source
ne prend pas plusieurs fichiers en entrée. L'argument doit être un.
Ce qui craint l'IMHO.
À partir du Linux Documentation Project, Advanced Bash Scripting Guide,
Chapitre 15 - Commandes et éléments internes :
source ,. (commande de point):
Cette commande, lorsqu'elle est appelée à partir de la ligne de commande, exécute un script. Dans un script, un nom de fichier source charge le fichier nom de fichier. 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.
Si le fichier source est lui-même un script exécutable, il sera exécuté puis restituera le contrôle au script qui l’a appelé. Un script exécutable recherché peut utiliser un retour à cette fin.
Donc, pour ceux qui sont familiers avec le langage de programmation C, la recherche d’un fichier a un effet similaire à celui de la directive #include
.
Notez également que vous pouvez transmettre des arguments de position au fichier en cours d’origine, comme:
$ source $filename $arg1 arg2
Avec source, vous pouvez transmettre des variables ou des fonctions d’un autre fichier à votre script et les utiliser sans avoir à les réécrire.
FI:
#!/bin/bash
source /etc/environment
source /myscripts/jetty-common/config/jetty-functions.sh
À votre santé