This commit is contained in:
2026-03-29 14:01:52 +03:00
commit 0611279128
210 changed files with 60454 additions and 0 deletions

12
scripts/uninstall Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
test -f "$INSTALL_LOG" || exit 0
sort "$INSTALL_LOG" | uniq | \
while read file
do
echo "RM $file"
rm -f "$file"
rmdir -p "`dirname $file`" 2>/dev/null
done
rm -f "$INSTALL_LOG"