Skip to content

Instantly share code, notes, and snippets.

@master-q
Last active November 17, 2019 23:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save master-q/2261210dbda5275501b01ea5f51533b6 to your computer and use it in GitHub Desktop.
Save master-q/2261210dbda5275501b01ea5f51533b6 to your computer and use it in GitHub Desktop.
Amazon S3にPCのディレクトリをバックアップする方法
function do_aws_s3_private_backup {
du -sh $HOME/Sounds $HOME/Family
aws s3 sync --delete $HOME/Sounds s3://masterq-private/Sounds
aws s3 sync $HOME/Family s3://masterq-private/Family
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment