確か sourceは、BASHシェルのコマンドです。
sourceは、ファイル名で指定したファイルを実行します。
source ~/.bashrc は、.bashrc設定を反映する処理です。
$ source
BASH: source: filename argument required
source: usage: source filename [arguments]
--------------------------------------------
ユーザーのHOMEディレクトリ:~/に ファイル.bashrcは、
存在しますか?
存在しなければ、ユーザーが、新規作成しなければ
sourceコマンドで .bashrcの設定を 反映しません。
cat .bashrc
で 内容が 表示されます。
なければ、cat > .bashrc
で 新規作成(適当に入力後 Ctrl+Dで作成終了)します。
|