concourse : 使用 fly 命令销毁管道

concourse : destroy pipelines with fly command

我有一个管道列表,例如: 测试-运行-第一 测试-运行-我 测试-运行-djfhd 测试-运行-jhfkjdh ...

我想销毁这些管道,我该如何申请: fly -t test destroy-pipeline -p "all pipelines starting with test-run-*" ?

谢谢

我认为执行此类操作的合理方法是使用管道将多个命令链接在一起。例如,您可以使用以下命令实现此目的:

fly -t test pipelines | awk '/^test-run-/ { print  }' | xargs -n1 fly -t test destroy-pipline -n -p