Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文档中没有提到使用 gsutil 执行 shell 脚本的选项。尝试了一些选项,但仍然没有运气。我有一个 .sh 文件,存储在存储桶中,有没有办法使用执行此脚本gsutil?
gsutil
gsutil不支持直接执行 shell 脚本,但您可以将其通过管道传输到 shell,例如:
gsutil cat gs://your-bucket/your-script.sh | sh