The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

13 satır
240 B

  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