Get Issues From Sftp Or Ftp Using Command Console
- Connect to ssh connection (this user and IP must be change according where is store this files) .
ssh nfrette@157.245.138.177 - Create a folder with tenant name (if this doesn't exist yet) .
mkdir tenantName - Move to tenant folder
cd tenantName
connect with the tenant sftp
- You should connect using
sftp ebookspatagonia@35.229.53.86 - Move to folder that is contain folder with the issues
sftp> cd files
You can see what folder exist using
sftp> ls
- You can move all folder recursive using .
sftp> get -r nameFolder
More information: https://www.digitalocean.com/community/tutorials/how-to-use-sftp-to-securely-transfer-files-with-a-remote-server
If the connection is via ftp, you can use
- You should connect using
ftp ebookspatagonia@35.229.53.86 - for avoid ask are you download this file? in each file, you can use
ftp> prompt off - And then you can get all files from a folder using
ftp> mget *where*is a flag for all.
you can use also
*.epubor*.jpg
More information: https://www.cyberciti.biz/faq/linux-unix-ftp-commands/