18 lines
568 B
Bash
18 lines
568 B
Bash
#!/bin/bash
|
|
# Cleanup script for Quality Label Printing Service folder
|
|
# Run this from the windows_print_service directory (in Git Bash, WSL, or Linux)
|
|
|
|
# Remove Python-based service and management
|
|
rm -f print_service.py
|
|
rm -f service_manager.py
|
|
|
|
# Remove extra documentation (keep only README.md)
|
|
rm -f INSTALLATION_GUIDE.md NATIVE_SOLUTION_SUMMARY.md QUICK_SETUP.md QUICK_SETUP_NATIVE.md
|
|
|
|
# Optionally remove test_service.ps1 if not needed
|
|
# rm -f test_service.ps1
|
|
|
|
# Done
|
|
ls -l
|
|
|
|
echo "Cleanup complete. Only PowerShell service, Chrome extension, and README remain." |