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.

do_list_images.sh 240 B

123456789101112
  1. #!/bin/bash
  2. THISDIR=$(cd $(dirname ${0}) && pwd)
  3. DOCURL=${THISDIR}/docurl
  4. DO_OUTPUT=${1}
  5. if [[ -z "${DO_OUTPUT}" ]] ; then
  6. ${DOCURL} "images?private=true" | jq .
  7. else
  8. ${DOCURL} "images?private=true" | jq -r .images[].${DO_OUTPUT}
  9. fi