Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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.

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?

question from:https://stackoverflow.com/questions/66051756/how-to-pass-an-entry-to-doctl-compute-volume-delete

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
197 views
Welcome To Ask or Share your Answers For Others

1 Answer

Relpace

doctl compute volume delete

with

xargs -n 1 doctl compute volume delete

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...