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.
 
 
 
 

13 lines
219 B

  1. #!/bin/bash
  2. THISDIR=$(cd $(dirname ${0}) && pwd)
  3. VCURL=${THISDIR}/vcurl
  4. VULTR_OUTPUT=${1}
  5. if [[ -z "${VULTR_OUTPUT}" ]] ; then
  6. ${VCURL} server/list | jq .
  7. else
  8. ${VCURL} server/list | jq -r .[].${VULTR_OUTPUT}
  9. fi