From here, here, here and here.
The purpose is to get the id list from the whole output of the “dbutils” command, which is used to perform the “delete” command.
1 | ./dbutils list StorageSystem | grep 'id:' | sed -e 's/id: //g' | tr '\n' ' ' |
From here, here, here and here.
The purpose is to get the id list from the whole output of the “dbutils” command, which is used to perform the “delete” command.
1 | ./dbutils list StorageSystem | grep 'id:' | sed -e 's/id: //g' | tr '\n' ' ' |