We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Might it be worth adding rm command that reads a list of s3 URLs to delete from stdin or from a file argument?
rm
stdin
$ coop rm --urls s3-urls-to-delete.txt
Compare to bash
$ cat delete-s3-urls.sh #/bin/bash while IFS= read -r line; do aws s3 rm "$line" done < "$1" $ ./delete-s3-urls.sh s3-urls-to-delete.txt
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Might it be worth adding
rm
command that reads a list of s3 URLs to delete fromstdin
or from a file argument?Compare to bash
The text was updated successfully, but these errors were encountered: