この発言の意味を教えてください
. ./ab_project_setup.ksh $(pwd)
アルベルトの答えに追加:
ここに小さなデモがあります:
$ cat a.sh # the script a.sh just exports a variable foo
export foo="$1" # with it's value set to first command line argument.
$ echo $foo # currently variable foo is not set.
$ . ./a.sh $(pwd) # source the script passing it pwd as argument.
$ echo $foo # variable foo is now set.
/home/codaddict
$ pwd # the present working directory.
/home/codaddict
.
次のソースを意味します
./ab_project_setup.ksh
調達しているファイルの名前
$(pwd)
現在の作業ディレクトリに展開され、スクリプトに引数として渡されます。