rsync
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
#contents
&tag(macOS,rsync,コマンド);
* 情報 [#e099d824]
- [[Command Technica:はじめてrsyncを使う方が知っておきた...
そのディレクトリも含めてコピーしたい場合:「/」なし
そのディレクトリ以下のツリーをコピーしたい場合:「/」あり
- [[rsync with retries>https://gist.github.com/iangreenle...
rsync with retries
- [[【 rsync 】コマンド(その1)――ファイルやディレクトリ...
異なるホスト間でディレクトリを同期する場合は、同期元や同...
- [[linux - Resume rsync over SSH after broken connection...
#!/bin/bash
while [ 1 ]
do
rsync -avz --partial source dest
if [ "$?" = "0" ] ; then
echo "rsync completed normally"
exit
else
echo "Rsync failure. Backing off and retrying..."
sleep 180
fi
done
終了行:
#contents
&tag(macOS,rsync,コマンド);
* 情報 [#e099d824]
- [[Command Technica:はじめてrsyncを使う方が知っておきた...
そのディレクトリも含めてコピーしたい場合:「/」なし
そのディレクトリ以下のツリーをコピーしたい場合:「/」あり
- [[rsync with retries>https://gist.github.com/iangreenle...
rsync with retries
- [[【 rsync 】コマンド(その1)――ファイルやディレクトリ...
異なるホスト間でディレクトリを同期する場合は、同期元や同...
- [[linux - Resume rsync over SSH after broken connection...
#!/bin/bash
while [ 1 ]
do
rsync -avz --partial source dest
if [ "$?" = "0" ] ; then
echo "rsync completed normally"
exit
else
echo "Rsync failure. Backing off and retrying..."
sleep 180
fi
done
ページ名: