Skip to content

Instantly share code, notes, and snippets.

View 3ace's full-sized avatar
🏠
Working from home

Ade Anom A 3ace

🏠
Working from home
  • Indonesia
View GitHub Profile
@3ace
3ace / removes.sh
Last active August 28, 2021 17:49
Removes all registered BigBlueButton from Scalelite (Tested using blindsidenetwks/scalelite:v1.1-bionic230-amazonlinux)
#!/bin/bash
./bin/rake servers | sed -rn "s/^id:\s{1}(.*$)/\1/p" | while read -r line; do ./bin/rake servers:remove[$line]; done