The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

11 行
274 B

  1. #!/bin/bash
  2. THISDIR=$(cd $(dirname ${0}) && pwd)
  3. VCURL=${THISDIR}/vcurl
  4. SNAPSHOT_FILTER=${1?no snapshot filter provided}
  5. for snap in $(${VCURL} snapshot/list | jq -r '.[].description' | grep "${SNAPSHOT_FILTER}") ; do
  6. ${THISDIR}/vultr_delete_snapshot.sh "${snap}"
  7. done