If you are receiving an error when using '*', and if you want to download multiple files from an aws bucket to your current directory, you can use recursive, exclude, and include flags like this:
aws s3 cp s3://myfiles/ . --recursive --exclude "*" --include "file*"`
Hope this helps you!