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.
スクリプトで開始するスクリプトがありますが、正しくシャットダウンするには「終了」と入力する必要があります。とにかく、PID を使用してスクリプト内からこれを実行できますか?
この場合、here-string を使用することもできます。
$ myscript <<< end
これにより、スクリプトは指定された文字列から読み取られます。stdin
stdin
heredocが必要なようです。
$ myscript <<EOF end EOF
したがって、上記はすべてをプロセスの標準入力にフィードします (ただし、行は含みませんEOF)
EOF