Bash スクリプト文字列の内挿は中括弧をそのまま保持します。

Bash スクリプト文字列の内挿は中括弧をそのまま保持します。

次の例のリクエスト文字列はバージョン変数を挿入しますが、中かっこを保持します。理由がわからない。

#!/bin/sh

version=2989
request="http://example.com/?version={$version}&therest"
echo "$request"

結果:

$ ~/script.sh
http://example.com/?version={2989}&therest

環境:

$ echo $0
-zsh

ベストアンサー1

これは{以前です$。それが必要です${version}:)

おすすめ記事