shellscript シェルスクリプトで別ファイルから変数を読み込む

# プロジェクトに移動
$ cd /path/to/your/project

# bin ディレクトリを作成して bin に移動
$ cd mkdir bin
$ cd bin

# ファイルを作成
$ touch var
$ touch test

# 権限変更
$ chmod 744 var
$ chmod 744 test

var (.sh)

#!/bin/sh

SAMPLE_USER="user"
SAMPLE_PASSWORD="password"

test (.sh)

#!/bin/sh

cd `dirname $0`
d=`pwd`

source $d/var

echo $SAMPLE_USER
echo $SAMPLE_PASSWORD

実行

$ cd /path/to/your/project
$ bin/test
user
password
カテゴリー:sh