auto-sync from MEMORY.md (2026-03-04 15:45)

This commit is contained in:
Claude Auto-Sync
2026-03-04 15:45:23 +00:00
parent 85903cc52c
commit f929bc7bd0
21 changed files with 387 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# Proxmox console quirks
- Heredoc (<<EOF) does NOT work in Proxmox web console
- \n in python/printf strings may paste as literal \n
- Use: python3 -c with json.load/dump for file edits (reliable)
- sed s/foo/bar\nbaz/ DOES add real newlines in replacement
- For Proxmox API file edits: must SSH or use node Shell console
<!-- AUTO-SYNC FROM MEMORY.MD - DO NOT EDIT BELOW -->
## Proxmox console quirks
- Heredoc (<<EOF) does NOT work in Proxmox web console
-
in python/printf strings may paste as literal
- Use: python3 -c with json.load/dump for file edits (reliable)
- sed s/foo/bar
baz/ DOES add real newlines in replacement
- For Proxmox API file edits: must SSH or use node Shell console
<!-- END AUTO-SYNC -->