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?

More than 1 year has passed since last update.

【シェルスクリプト】コマンドを変数に格納して実行する方法

Last updated at Posted at 2022-09-28

コマンドを変数に格納して実行する方法

変数に格納したコマンドの引数にスペースが入っていると想定通りに動作しないことがある。

sample.sh
set -x

SAY_HELLO='echo "hello !!"'
$SAY_HELLO

上記のように記述して実行するとecho '"hello' '!!"'を実行していることになる。

$ sample.sh
+ SAY_HELLO='echo "hello !!"'
+ echo '"hello' '!!"'
"hello !!"

想定どおり動作させるためには以下のように記述する。

sample.sh
set -x

SAY_HELLO='echo "hello !!"'
eval "$SAY_HELLO"
+ SAY_HELLO='echo "hello !!"'
+ eval echo '"hello' '!!"'
++ echo 'hello !!'
hello !!

echo 'hello !!'が実行されている。

0
0
2

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?