Skip to content

Instantly share code, notes, and snippets.

@Rafat97
Last active June 18, 2022 16:22
Show Gist options
  • Save Rafat97/80373ebb37cce712690f69e4e6b593b4 to your computer and use it in GitHub Desktop.
Save Rafat97/80373ebb37cce712690f69e4e6b593b4 to your computer and use it in GitHub Desktop.
const getBucketName = process.env.AWS_BUCKET_NAME;
const getBucketKey = process.env.AWS_BUCKET_KEY;
const getNewFileName = process.env.NEW_VIDEO_FILE_NAME;
await $`echo "Downloading file..."`;
await $`aws s3 cp s3://${getBucketName}/${getBucketKey} ./${getNewFileName}`;
await $`echo "Downloading end..."`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment