Initial commit

This commit is contained in:
2026-09-15 08:14:52 -05:00
commit 53a6565eae
22 changed files with 13812 additions and 0 deletions
Executable
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -Eeuo pipefail
if [[ $# -ne 1 ]]; then
echo "Usage: $0 '/absolute/source/path'" >&2
exit 2
fi
SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
exec python3 "$SCRIPT_DIR/salvage.py" recover "$1"