web-dev-qa-db-ja.com

最初の「。」は何ですか「で意味します。 〜/ .bashrc '?

.bashrcでエイリアスを修正する投稿を見ました。

そして、エイリアスを.bashrcに入れた後、使用する必要があると彼は言います:

. ~/.bashrc

ここでは、最初のdot( '。')が何をするのかよくわかりません。その機能とは何ですか?

11
Zen

おもしろい...名前はdot-commandのようです。あなたの場合は、.bashrcを呼び出し元のシェルプログラム(あなたの場合はbash環境)に含めます。コマンドラインから呼び出すと、変数が.bashrcに設定されているため、環境変数が更新されます。

echo "FOO=bar" > test
echo $FOO

結果なし、環境変数は設定されていません。しかし、「テスト」ファイルを入手した後:

. test

環境変数FOOが設定され、

echo $FOO

結果として

bar

私は次の情報を見つけました ここ

ファイルのソース(ドットコマンド)は、スクリプトにコードをインポートし、スクリプトに追加します(Cプログラムの#includeディレクティブと同じ効果)。最終的な結果は、コードの「ソース」行がスクリプトの本文に物理的に存在する場合と同じです。これは、複数のスクリプトが共通のデータファイルまたは関数ライブラリを使用する状況で役立ちます。

また、これを参照してください question 。 bashでは、.sourceと同じです。

5
noleti

Bashで何かを確認したい場合は、typemanを使用します。

あなたの場合、あなたは何を知りたいです。

$ type .
. is a Shell builtin

シェル組み込みとは、bash Shellの中にあることを意味します。シェルビルトインに関する情報は、bashマニュアルページにあります。大きなセクションがあります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