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.
リモート SSH rsync がホストから失敗したかどうかを確認する最も簡単な方法は何ですか?
ファイルが見つからなくても、接続が確立できなくても、RSYNC の犬が死んで葬儀に出席しなければならなかったとしても、私は気にしません。どのように指定しますか:
RSYNC が失敗した場合、何かしますか?
編集:デーモンではなくRSYNC SSH。
次のようなbashスクリプトを作成できます。
if ssh <server> rsync; then echo "SUCCESS" else echo "FAIL" fi