79749894

Date: 2025-08-29 06:40:14
Score: 2
Natty:
Report link

If Python 3, try https://docs.python.org/3/library/pty.html#pty.spawn:

import pty

pty.spawn(
    ["rsync", "--rsh=ssh", "-rv", "--files-from=-", "thisdir/", "servername:folder/"]
)
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Daanturo