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.
expect -c の実行時に、Expect が 0 または 1 ではなく終了ステータス コードを返すようにするにはどうすればよいですか。
たとえば、次の行を実行すると、"17" が返されるはずですが、コマンドが正常に実行されたことを示す "0" が返されます。
expect -c "spawn echo \"foo\"; expect { -re \"foo\" { exit 17 } }"; echo $?