「whiptail」チェックボックスまたはラジオリストのオプションを提供するjsonファイルがあります。私はそれらをつかみ、少し編集し、それらを使ってオプションとしてマークしたかったです:
defaults.json
文書:
{"displays":
[
{"id": "320x240", "default":"on", "description":"320x240 (native resolution of 3.2 TFT-Display)", "hdmi_group":"2", "hdmi_mode":"87","hdmi_cvt":"320 240 60 1 0 0 0"},
{"id": "640x480", "default":"off", "description":"640x480", "hdmi_group":"2","hdmi_mode":"87", "hdmi_cvt":"3240 240 60 1 0 0 0"},
{"id": "720x540", "default":"off", "description":"720x540", "hdmi_group":"2","hdmi_mode":"87", "hdmi_cvt":"3240 240 60 1 0 0 0"},
{"id": "800x600", "default":"off", "description":"800x600", "hdmi_group":"2","hdmi_mode":"87", "hdmi_cvt":"3240 240 60 1 0 0 0"},
{"id": "1024x768", "default":"off", "description":"1024x768", "hdmi_group":"2","hdmi_mode":"87", "hdmi_cvt":"3240 240 60 1 0 0 0"},
{"id": "1280x720", "default":"off", "description":"1280x720 (16:9)", "hdmi_group":"2","hdmi_mode":"87", "hdmi_cvt":"3240 240 60 1 0 0 0"},
{"id": "1600x900", "default":"off", "description":"1600x900 (16:9)", "hdmi_group":"2","hdmi_mode":"87", "hdmi_cvt":"3240 240 60 1 0 0 0"},
{"id": "1920x1080", "default":"off", "description":"1920x1080 (16:9)", "hdmi_group":"2","hdmi_mode":"87", "hdmi_cvt":"3240 240 60 1 0 0 0"}
]
}
jq
スクリプト
displays=$(cat defaults.json | jq -r -j '.displays[] | "\(.id) \"\(.description)\" \(.default) "')
[tag item status]
これにより、次の出力が表示されます(該当する場所に直接貼り付けると機能します)。
320x240 "320x240 (native resolution of 3.2 TFT-Display)" on 640x480 "640x480" off 720x540 "720x540" off 800x600 "800x600" off 1024x768 "1024x768" off 1280x720 "1280x720 (16:9)" off 1600x900 "1600x900 (16:9)" off 1920x1080 "1920x1080 (16:9)" off
これはうまくいきます:
whiptail --title "Display setup" --radiolist "Choose your display" 20 78 8 320x240 "320x240 (native resolution of 3.2 TFT-Display)" on 640x480 "640x480" off 720x540 "720x540" off 800x600 "800x600" off 1024x768 "1024x768" off 1280x720 "1280x720 (16:9)" off 1600x900 "1600x900 (16:9)" off 1920x1080 "1920x1080 (16:9)" off 3>&1 1>&2 2>&3
しかし、変数を介して追加しようとすると、$displays
「whiptail
ヘルプ」ファイルのみが出力されます。
これはうまくいきません
whiptail --title "Display setup" --radiolist "Choose your display" 20 78 8 $displays 3>&1 1>&2 2>&3
私は何が間違っていて、なぜ動作しないのですか?
ベストアンサー1
$displays
これは、変数がIFS
引用符を気にせず(変数のデフォルト値を使用して)単にスペースに分割されるためです。つまり、("1920x1080 (16:9)"
は単一の引数ではなく2つの引数として渡され、引数として渡されます。この場合は、実際にコマンドに渡されるパラメータを確認するために使用することをお勧めします。whiptail
"1920x1080
(16:9)"
1920x1080 (16:9)
set -x
この試み:
jq -r '.displays[]|.id,.description,.default|@sh' defaults.json |
xargs whiptail --title "Display setup" --radiolist "Choose your display" 20 78 8
whiptail
stdout は常に端末へのハンドルとして使用されるように見えるので、コマンドの置換に使用される場合はより複雑なものが必要です。
res=$(jq -r '.displays[]|.id,.description,.default|@sh' defaults.json |
xargs whiptail --output-fd 3 --title "Display setup" --radiolist "Choose your display" 20 78 8 3>&1 >/dev/tty)
echo "$res"