我有一个存储在 GCS 中的 .sh 文件。我正在尝试通过 google cloud shell 安排 .sh 文件。
我可以使用gsutil cat gs://miptestauto/baby.sh | sh
命令运行相同的文件,但无法安排它。
以下是我安排文件的代码:
16 17 * * * gsutil cat gs://miptestauto/baby.sh | sh
它将消息显示为“自动保存..完成”,但我使用时未显示计划的作业crontab -l
# contents of .sh file
bin/bash
bq load --source_format=CSV babynames.baby_destination13 gs://testauto/yob2010.txt name:string,gender:string,count:integer
请谁能告诉我如何使用谷歌云外壳安排它。我没有使用计算引擎/应用引擎。只是想使用云外壳安排它。
先感谢您 :)