Created
February 18, 2015 20:06
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
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
It doesn't work, if we use wildcard * with the file name it doesnt work