file transfer

This commit is contained in:
2026-07-16 14:30:36 +05:30
parent 80e1bd8e3a
commit b9aeedc5ef
10 changed files with 1388 additions and 82 deletions

5
verify_syntax.py Normal file
View File

@@ -0,0 +1,5 @@
import re, ast
src = open('c:/Users/seekr/OneDrive/Desktop/work/RMM/RMM-BE/rmm-backend/deploy_agent.sh', encoding='utf-8').read()
m = re.search(r"cat << 'EOF' > /opt/seekright-agent/client_agent_prototype.py\n(.*?)\nEOF", src, re.S)
ast.parse(m.group(1))
print("Embedded Python syntax is OK")