Skip to content

Instantly share code, notes, and snippets.

@bfleming-ciena
Created February 18, 2015 20:06
Show Gist options
  • Save bfleming-ciena/06ab3531a1c30c3b998a to your computer and use it in GitHub Desktop.
Save bfleming-ciena/06ab3531a1c30c3b998a to your computer and use it in GitHub Desktop.
Simple example using python scp module to do wildcard scp with progress
from paramiko import SSHClient
from scp import SCPClient
def progress(filename, size, sent):
print filename + " " + str(size) + " " + str(sent)
if __name__ == "__main__":
ssh = SSHClient()
ssh.load_system_host_keys()
ssh.connect('----', port=22, username="root", password="---")
# SCPCLient takes a paramiko transport as its only argument
# Just a no-op. Required sanitize function to allow wildcards.
scp = SCPClient(ssh.get_transport(), sanitize=lambda x: x, progress=progress)
# scp.listdir("/var/tmp")
scp.get("/var/tmp/user*", "bak", recursive=True)
@sanjeevrohila
Copy link

It doesn't work, if we use wildcard * with the file name it doesnt work

@ammaramja
Copy link

This is working for scp.get method any idea how to make wildcards work for scp.send method?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment