The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

13 linhas
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