0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[Linux] シェル変数と環境変数

Posted at

シェル変数

有効範囲:定義したシェル・プロセスのみ

環境変数

有効範囲:定義したシェル・プロセス・子プロセス

シェル変数から環境変数

BashA
$ EV=world
$ SV=local
$ export=EV
$ bash ←新しいシェルを起動
BashB(子プロセス)
$ echo=EV
// 出力結果
// world ←引き継がれる(環境変数化)

$ echo=SV
// 出力結果
//    ←引き継がれない

Ping-t

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?