The main Bubble source repository. Contains the Bubble API server, the web UI, documentation and utilities. https://getbubblenow.com
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
367 B

  1. #!/bin/bash
  2. #
  3. # Copyright (c) 2020 Bubble, Inc. All rights reserved. For personal (non-commercial) use, see license: https://getbubblenow.com/bubble-license/
  4. #
  5. THISDIR=$(cd $(dirname ${0}) && pwd)
  6. VCURL=${THISDIR}/vcurl
  7. VULTR_OUTPUT=${1}
  8. if [[ -z "${VULTR_OUTPUT}" ]] ; then
  9. ${VCURL} server/list | jq .
  10. else
  11. ${VCURL} server/list | jq -r .[].${VULTR_OUTPUT}
  12. fi