I have done this by mistake:
s3cmd del s3://mybucket/*
But ... it is working:
...
delete: 's3://mybucket/file0080.bin'
delete: 's3://mybucket/file0081.bin'
delete: 's3://mybucket/file0082.bin'
...
I am baffled. Usually *
is expanded by the shell (Bash
), using the information available in the localhost
.
How/why is expansion working against an s3
bucket?
(This is an unquoted glob pattern)