We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7e2397 commit 1b3f8d4Copy full SHA for 1b3f8d4
build/brev-delete-instances.bash
@@ -0,0 +1,9 @@
1
+#!/bin/bash
2
+
3
+INSTANCES=$(brev list | tail -n +3 | awk '{print $1}' | tr '\n' ' ')
4
5
+if [ -n "${INSTANCES}" ]; then
6
+ brev delete ${INSTANCES}
7
+else
8
+ echo "No instances found"
9
+fi
0 commit comments