Reputation: 35
I am trying to pull data from the google playstore console through the cli.
The documentation that I am using as a reference is this.
I have retrieved my cloud storage URI from the playstore console and used the command:
gsutil cp -r gs://pubsite_prod_xxxxxx/stats/installs/installs_com.my.package_2021* .
I get an error message like this:
zsh: no matches found: gs://pubsite_prod_xxxxx/stats/installs/installs_com.my.package_2021*
I am trying to understand what the issue could be. Any pointers would be of great help.
Other details:
Though my playstore account is two or three years old, I just created my google cloud platform account. (So, could the issue be that there are no reports written onto my bucket, though there is a URI mentioned on the play console?)
I am unable to see this bucket through the google cloud platform console. The list of buckets are empty. (I am however not sure whether I am looking at the right place). Attaching a screenshot of the project on the console that I am looking into. screenshot - empty list of buckets
Upvotes: 0
Views: 1240
Reputation: 816
This is an issue related to ZSH You may could change your shell, via sudo chsh --shell=/bin/bash $USER
will change the shell field in /etc/passwd
Or you may use '
around a special character to escape the special character in order to let the shell recognize it. like:
gsutil cp -r 'gs://pubsite_prod_xxxxxx/stats/installs/installs_com.my.package_2021*' .
Upvotes: 1