The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

13 строки
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