Created
August 21, 2024 03:47
-
-
Save andriilive/f27f535bfd7f0f8e6ac3e6df1c8f8ebd to your computer and use it in GitHub Desktop.
Digitalocean CLI Download Invoices
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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