Skip to content

Instantly share code, notes, and snippets.

@andriilive
Created August 21, 2024 03:47
Show Gist options
  • Select an option

  • Save andriilive/f27f535bfd7f0f8e6ac3e6df1c8f8ebd to your computer and use it in GitHub Desktop.

Select an option

Save andriilive/f27f535bfd7f0f8e6ac3e6df1c8f8ebd to your computer and use it in GitHub Desktop.
Digitalocean CLI Download Invoices
counter=1
for invoice_id in $(doctl invoice list --format="Invoice UUID" --no-header); do
doctl invoice csv $invoice_id "${counter}__${invoice_id}.csv"
counter=$((counter + 1))
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment