Cosa fa 'fonte'?


583
$ whatis source
source: nothing appropriate.
$ man source
No manual entry for source
$ source
bash: source: filename argument required
source: usage: source filename [arguments]

Esiste ed è eseguibile. Perché non c'è alcuna documentazione a riguardo in Ubuntu? Che cosa fa? Come posso installare la documentazione a riguardo?



54
hai dimenticato $ type source source is a shell built-in
bnjmn

2
La mia shell ha restituito questo $ whatis source source (1) - bash built-in commands, see bash(1). Inoltre, man sourcemi porta alle BASH_BUILTINS(1)pagine man. Questo è su Fedora tra l'altro, non ho idea del perché quei pacchetti debian non siano documentati (o male).
arielnmz,

4
@lesmana, ottimo collegamento. Quella risposta collegata è la risposta più completa a questa domanda.
Scott,

5
Prova "aiuto fonte"
Jasser

Risposte:


469

sourceè un comando integrato della shell bash che esegue il contenuto del file passato come argomento, nella shell corrente . Ha un sinonimo in .(periodo).

Sintassi

. filename [arguments]

source filename [arguments]

8
È sourceun comando specifico di bash o lo hanno anche altre shell? (Sto chiedendo di ottenere i tag proprio sulla domanda ...)
Jonik,

2
Afaik, sourceera presente nella conchiglia Bourne e quindi probabilmente presente in tutti i suoi discendenti. en.wikipedia.org/wiki/Bourne_shell . So che non tutte le shell hanno il sourcecomando, meno certi su quali shell lo contengano.
Nag

13
@nagul, sourcenon era presente nella shell Bourne, è un'estensione GNU che è arrivata molto più tardi. La sintassi originale e ancora portatile (POSIX) è usare il comando "punto", cioè .invece. Personalmente non uso mai sourcedato il fatto che è più lungo da scrivere e non ha valore aggiunto. Immagino che il suo scopo principale sia quello di rendere gli script più leggibili per i neofiti.
jlliagre,

18
@jlliagre il mio personale "spiega perché avere una fonte" sourcenon è solo più descrittivo, ma sembra qualcosa di diverso da un errore di battitura. Ho avuto persone che saltano il punto / punto quando invio comandi tecnici via e-mail.
Rich Homolka

3
Un uso comune di questo comando è che uno script di shell si trovi sourcein un "file di configurazione" che contiene assegnazioni prevalentemente variabili. Le assegnazioni delle variabili controllano quindi le cose che fa il resto dello script. Naturalmente, un buon script imposterà le variabili su valori predefiniti sensibili prima del source, o almeno controllerà i valori validi.
LawrenceC

276

Stai attento! ./e nonsource sono proprio gli stessi .

  • ./scriptesegue lo script come file eseguibile, avviando una nuova shell per eseguirlo
  • source scriptlegge ed esegue i comandi dal nome file nell'attuale ambiente shell

Nota: ./scriptnon lo è . script, ma . script==source script

https://askubuntu.com/questions/182012/is-there-a-difference-between-and-source-in-bash-after-all?lq=1


27
Stai mescolando ./command e. script. Il comando source è lo stesso del comando. Usando ./meh si dice esegui script / binary chiamato meh nella directory corrente e non ha nulla a che fare con source /. -comando. Come spiegato nella risposta nel tuo link.
Joakim Elofsson,

2
@JoakimElofsson È menzionato nel link, ma modificherò la risposta per evitare malintesi. Per favore correggilo.
Umidhat

3
È un po 'importante che la risposta accettata indichi anche questa, perché per un momento ho pensato che./ == source == .
Daniel F,

90

È utile conoscere il comando 'type':

> type source
source is a shell builtin

ogni volta che qualcosa è una shell incorporata è tempo di fare man bash.


1
Sai sempre qualcosa di nuovo quando leggi man)

19
Puoi anche usare help {builtin-name}, ad es help source.
LawrenceC

1
helpnon funziona ovunque (almeno in zsh). typelo fa.
Kumarharsh,

4
Per amplificare: se stai usando bash e se conosci (forse tramite 'type') è un comando integrato, allora 'help' ti porterà direttamente al paragrafo di documentazione che desideri senza passare da 4.184 righe di ' man bash 'text.
Ron Burk,

38

. (un punto) è un comando incorporato della shell bash che esegue i comandi da un file passato come argomento, nella shell corrente. 'fonte' è sinonimo di '.'.

Dalla pagina man di 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.

27

'source' è la versione lunga di '.' comando. Al prompt di bash si può fare:

source ~/.bashrc

per ricaricare l'impostazione (modificata?) della bash per la bash corrente in esecuzione.

La versione breve sarebbe:

. ~/.bashrc

La pagina man:

. 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 shopt
    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. 

Questa dovrebbe essere la risposta accettata.
Peter Mortensen,

25

sourceIl comando esegue lo script fornito (l'autorizzazione eseguibile non è obbligatoria ) nell'ambiente shell corrente , mentre ./esegue lo script eseguibile fornito in una nuova shell.

sourcecomando ha un sinonimo . filename.

Per renderlo più chiaro, dai un'occhiata al seguente script, che imposta l'alias.

make_alias

#! /bin/bash

alias myproject='cd ~/Documents/Projects/2015/NewProject'

Ora abbiamo due scelte per eseguire questo script. Ma con una sola opzione, l'alias desiderato per la shell corrente può essere creato tra queste due opzioni.

Opzione 1: ./make_alias

Rendi eseguibile prima lo script.

chmod +x make_alias

Eseguire

./make_alias

Verificare

alias

Produzione

**nothing**

Ops! Alias ​​è sparito con la nuova shell.

Andiamo con la seconda opzione.

Opzione 2: source make_alias

Eseguire

source make_alias

o

. make_alias

Verificare

alias

Produzione

alias myproject='cd ~/Documents/Projects/2015/NewProject'

Sì, Alias ​​è impostato.


10

In caso di dubbio, la cosa migliore da fare è usare il infocomando:

[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.

Potresti fornire più di un semplice RTFM?
Peter Mortensen,

5

Digita il comando "help source" nella tua shell.

Otterrai un output in questo modo:

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.

4

Da Linux Documentation Project, Advanced Bash Scripting Guide,
Chapter 15 - Internals Commands and Builtins :

fonte , . (comando punto):
questo comando, quando viene richiamato dalla riga di comando, esegue uno script. All'interno di uno script, un nome file di origine carica il nome file file. Il sourcing di un file (punto-comando) importa il codice nello script, aggiungendo allo script (stesso effetto della direttiva #include in un programma C). Il risultato netto è lo stesso che se le righe di codice "originate" fossero fisicamente presenti nel corpo dello script. Ciò è utile in situazioni in cui più script utilizzano un file di dati o una libreria di funzioni comuni.
Se il file di origine è esso stesso uno script eseguibile, verrà eseguito, quindi restituirà il controllo allo script che lo ha chiamato. Uno script eseguibile di provenienza può utilizzare un ritorno per questo scopo.

Quindi, per chi ha familiarità con il linguaggio di programmazione C, l'approvvigionamento di un file ha un effetto simile alla #includedirettiva.

Si noti inoltre che è possibile passare argomenti posizionali al file di provenienza, ad esempio:

$ source $filename $arg1 arg2

In che modo questa risposta differisce dalle 9 risposte precedenti?
Stephen Rauch,

2
Aggiungo un'altra fonte di informazioni e informazioni aggiuntive non menzionate prima.
Alexandro de Oliveira,

Non sapevo che sourcepotesse prendere argomenti o usare return.
Joe,

2

Va notato che sebbene sia un comando fantastico, sourcené la sua scorciatoia .avrebbe origine più di un file, il che significa

source *.sh

o

. script1.sh script2.sh

sarà non funzionerà.

Possiamo ripiegare usando i forloop, ma emetterebbe il file eseguibile più volte, creando più comandi o emettendolo.

Conclusione: sourcenon accetta più file come input. L'argomento deve essere uno.

Che fa schifo IMHO.


0

Con source puoi trasferire variabili o funzioni da un altro file al tuo script e usarle senza doverle riscrivere.

FI:

#!/bin/bash

source /etc/environment

source /myscripts/jetty-common/config/jetty-functions.sh

Saluti

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.