2

この発言の意味を教えてください

. ./ab_project_setup.ksh $(pwd)
4

2 に答える 2

2

アルベルトの答えに追加:

ここに小さなデモがあります:

$ 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
于 2010-11-12T10:02:25.623 に答える
1
.

次のソースを意味します

./ab_project_setup.ksh

調達しているファイルの名前

$(pwd)

現在の作業ディレクトリに展開され、スクリプトに引数として渡されます。

于 2010-11-12T09:49:14.050 に答える