Paramiko scp copy from remote machine regular expression

后端 未结 2 475
感动是毒
感动是毒 2021-01-15 06:42

Is there way i can copy remote files that ends with name \"output\" using paramiko scp.

I have below code, which copies only if i provide full path or exact file nam

2条回答
  •  广开言路
    2021-01-15 07:18

    Maybe need to use ssh to get list first, then scp them one by one.

    Something like follows, just FYI.

    def get_copy(self, hostname, dst):
        ssh = createSSHClient(hostname)
    
        stdin, stdout, stderr = ssh.exec_command('ls /home/username/*output')
        result = stdout.read().split()
    
        scp = SCPClient(ssh.get_transport())
        for per_result in result:
            scp.get(per_result)
        scp.close()
        ssh.close()
    

提交回复
热议问题