With the command
(doctl compute volume list) | cut -d ' ' -f 1 | tail -n +2
I have got a list of all volumes that I have created on DO. Now I would like to delete all volumes. With the command doctl compute volume delete, a volume can be deleted.
doctl compute volume delete
I am trying to run:
(doctl compute volume list) | cut -d ' ' -f 1 | tail -n +2 | doctl compute volume delete
Unfortunately it shows me:
Error: (volume.delete) command is missing required arguments
How pipe it correctly?
Relpace
with
xargs -n 1 doctl compute volume delete
1.4m articles
1.4m replys
5 comments
57.0k users