Fix ESCAPE issues in multiple library files

- lib/domain-discovery.sh: Added -- to grep command (1 fix)
- lib/reference-db.sh: Added -- to grep command (1 fix)
- lib/user-manager.sh: Added -- to grep command (1 fix)
- lib/email-functions.sh: Added -- to awk and grep commands (2 fixes)
- lib/php-config-manager.sh: Added -- to grep commands (3 fixes)
- lib/php-detector.sh: Added -- to grep command (1 fix)
Total: 9 ESCAPE fixes

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
cschantz
2026-01-09 16:38:55 -05:00
parent 9a98f4b251
commit dea6f27b4d
6 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -166,9 +166,9 @@ list_backups() {
local metadata_file="$backup_dir/metadata.txt"
if [ -f "$metadata_file" ]; then
local created=$(grep "^Backup Created:" "$metadata_file" | cut -d: -f2- | xargs)
local username=$(grep "^Username:" "$metadata_file" | cut -d: -f2 | xargs)
local domain=$(grep "^Domain:" "$metadata_file" | cut -d: -f2 | xargs)
local created=$(grep "^Backup Created:" -- "$metadata_file" | cut -d: -f2- | xargs)
local username=$(grep "^Username:" -- "$metadata_file" | cut -d: -f2 | xargs)
local domain=$(grep "^Domain:" -- "$metadata_file" | cut -d: -f2 | xargs)
local file_count=$(find "$backup_dir" -type f ! -name "metadata.txt" | wc -l)
echo "$backup_name|$created|$username|$domain|$file_count"