Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コマンドの実行を手伝ってください
tmsh list cm device-group one-line | awk '{print $3}'
予想では、これは F5 ロードバランサ用です
これを HPNA で実行すると、
can't read "3": no such variable while executing
シングル クォーテーションは、Tcl/expect では特別な意味を持ちません。あなたはしたいでしょう
tmsh list cm device-group one-line | awk {{print $3}}
奇妙に見えますが、外側のブレースは Tcl の非置換引用符であり、内側のブレースは awk のものです。