Last active
August 28, 2021 17:49
-
-
Save 3ace/5561f9983cec352a7a175060382c85fd to your computer and use it in GitHub Desktop.
Removes all registered BigBlueButton from Scalelite (Tested using blindsidenetwks/scalelite:v1.1-bionic230-amazonlinux)
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
#!/bin/bash | |
./bin/rake servers | sed -rn "s/^id:\s{1}(.*$)/\1/p" | while read -r line; do ./bin/rake servers:remove[$line]; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment