|
1234567891011121314 |
- #!/bin/bash
- #
- # Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
- #
- THISDIR=$(cd $(dirname ${0}) && pwd)
- VCURL=${THISDIR}/vcurl
-
- SNAPSHOT_FILTER=${1}
-
- if [[ -z "${SNAPSHOT_FILTER}" ]] ; then
- ${VCURL} snapshot/list | jq .
- else
- ${VCURL} snapshot/list | jq -r '.[].description' | grep "${SNAPSHOT_FILTER}"
- fi
|