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.
中かっこを送信していない次のコードがあります。
sendkeys "a=$(script.sh)",true
しかし、それはa =$script.shとして送信しています
中括弧がありません。
これを試して
SendKeys "a=${(}script.sh{)}", True
例えば
Sub Sample() Dim RetVal RetVal = Shell("NOTEPAD.EXE ", 1) AppActivate RetVal SendKeys "a=${(}script.sh{)}", True End Sub
出力
a=$(script.sh)