Skip to content

Instantly share code, notes, and snippets.

View miko007's full-sized avatar

Michael Ochmann miko007

View GitHub Profile
@miko007
miko007 / cleanup.php
Created April 6, 2022 09:43
A cleanup script to remove orphaned pads from an Etherpad Lite installation
#!/usr/bin/env php
<?php declare(strict_types=1);
function msg(string $message) : void {
echo "$message\n";
}
function error(string $message, int $code = 1) : void {
msg("[ERROR] $message");
exit($code);