From 20fa66a5878ba47a2134c6e96f970792c06199b4 Mon Sep 17 00:00:00 2001 From: Marianne Corvellec Date: Mon, 3 Jun 2024 23:05:21 +0200 Subject: [PATCH] Add download instructions for FTP CLI client. --- _includes/filezilla.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/_includes/filezilla.md b/_includes/filezilla.md index 0436ad4..df42869 100644 --- a/_includes/filezilla.md +++ b/_includes/filezilla.md @@ -30,6 +30,31 @@ The ftp host is available using the following details: - host: `ftp.ebi.ac.uk` +### CLI client step by step + +Connect to the FTP server: + + $ ftp ftp.ebi.ac.uk + +The FTP server being anonymous only, use `ftp` or `anonymous` (with no password) to log in. +Make sure that passive mode is on: + + ftp> passive + +Change the directory: + + ftp> cd /pub/databases/IDR/ + +You may list all the studies in the IDR: + + ftp> ls + +Or a single one, e.g.: + + ftp> ls idr0044-* + +Use the `get` command to download a specific file, and `bye` to close the connection. + ### Desktop client step-by-step Download and install the [FileZilla client](https://filezilla-project.org/download.php).