One-liner to download backup of all AWS S3 buckets

aws s3 ls | awk '{print $3}' | xargs -I {} sh -c 'echo "Syncing bucket: {}"; aws s3 sync s3://{} {}'