The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

13 行
216 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} droplets | jq .
  7. else
  8. ${DOCURL} droplets | jq -r .droplets[].${DO_OUTPUT}
  9. fi