The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
255 B

  1. #!/bin/bash
  2. THISDIR=$(cd $(dirname ${0}) && pwd)
  3. VCURL=${THISDIR}/vcurl
  4. SNAPSHOT_FILTER=${1}
  5. if [[ -z "${SNAPSHOT_FILTER}" ]] ; then
  6. ${VCURL} snapshot/list | jq .
  7. else
  8. ${VCURL} snapshot/list | jq -r '.[].description' | grep "${SNAPSHOT_FILTER}"
  9. fi