LoginSignup
2
2

More than 5 years have passed since last update.

rsyncコマンドメモ

Posted at
rsync -e "ssh -i /Users/Foo/.ssh/bar.pem" -ruvz --exclude="*\/\.*" --delete --force ./www/wordpress ec2-user@example.com:/var/www/html/ > ~/Desktop/log.txt

wordpressディレクトリをhtml直下に同期・転送する.

-e コマンド実行
-r 再帰的に
-u コピー元のほうが新しい場合に転送
-v ファイル名等を出力
-z 転送データを圧縮

--exclude 除外ファイル,ディレクトリ指定(パターンマッチ)
--delete コピーもとにない場合はコピー先のファイルを削除
--force 空ではないディレクトリも削除

--dry-run 空で実行

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2