From 90df513066dd5ab9f29510f2d1094560446a6a89 Mon Sep 17 00:00:00 2001 From: Leo Vivier Date: Tue, 9 Nov 2021 22:30:01 +0100 Subject: Add CLI ftp info --- 2021/prepare.md | 7 +++++++ 1 file changed, 7 insertions(+) (limited to '2021') diff --git a/2021/prepare.md b/2021/prepare.md index 47f7e143..6791e645 100644 --- a/2021/prepare.md +++ b/2021/prepare.md @@ -54,6 +54,13 @@ you can install FileZilla by running `sudo apt install filezilla` in a terminal. Otherwise, you can download FileZilla from their [project website](https://filezilla-project.org/). +You can also use a command-line interface with `ftp`: +> $ ftp ftp-upload.emacsconf.org 21 +> > anonymous +> > cd upload-here +> > send /your/local/path/to/the/recording.ext recording.ext # Don't forget the 2nd arg! +> # Ctrl-D to exit + If connection fails on the first try, please check to make sure the details are exactly as described above; and if the issue persists, please email so we can look into it. -- cgit v1.2.3 From 4b33ff936ce5fbb33be5bc5eb383364434e10256 Mon Sep 17 00:00:00 2001 From: Leo Vivier Date: Tue, 9 Nov 2021 22:30:50 +0100 Subject: Fix code-block formatting --- 2021/prepare.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to '2021') diff --git a/2021/prepare.md b/2021/prepare.md index 6791e645..bd2c61c6 100644 --- a/2021/prepare.md +++ b/2021/prepare.md @@ -55,11 +55,13 @@ terminal. Otherwise, you can download FileZilla from their [project website](https://filezilla-project.org/). You can also use a command-line interface with `ftp`: -> $ ftp ftp-upload.emacsconf.org 21 -> > anonymous -> > cd upload-here -> > send /your/local/path/to/the/recording.ext recording.ext # Don't forget the 2nd arg! -> # Ctrl-D to exit +``` +$ ftp ftp-upload.emacsconf.org 21 +> anonymous +> cd upload-here +> send /your/local/path/to/the/recording.ext recording.ext # Don't forget the 2nd arg! +# Ctrl-D to exit +``` If connection fails on the first try, please check to make sure the details are exactly as described above; and if the issue persists, -- cgit v1.2.3 From 1e6aec2896ddae2d46293cc33f9b4350908d7206 Mon Sep 17 00:00:00 2001 From: Leo Vivier Date: Tue, 9 Nov 2021 22:31:35 +0100 Subject: Fix harder --- 2021/prepare.md | 1 + 1 file changed, 1 insertion(+) (limited to '2021') diff --git a/2021/prepare.md b/2021/prepare.md index bd2c61c6..1f33e6ef 100644 --- a/2021/prepare.md +++ b/2021/prepare.md @@ -55,6 +55,7 @@ terminal. Otherwise, you can download FileZilla from their [project website](https://filezilla-project.org/). You can also use a command-line interface with `ftp`: + ``` $ ftp ftp-upload.emacsconf.org 21 > anonymous -- cgit v1.2.3 From 2f86a6ad100d434efd7af41a86fc4b5fdadeb1af Mon Sep 17 00:00:00 2001 From: Leo Vivier Date: Tue, 9 Nov 2021 22:32:11 +0100 Subject: Clarify language --- 2021/prepare.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '2021') diff --git a/2021/prepare.md b/2021/prepare.md index 1f33e6ef..781d55ca 100644 --- a/2021/prepare.md +++ b/2021/prepare.md @@ -60,7 +60,7 @@ You can also use a command-line interface with `ftp`: $ ftp ftp-upload.emacsconf.org 21 > anonymous > cd upload-here -> send /your/local/path/to/the/recording.ext recording.ext # Don't forget the 2nd arg! +> send /local/path/to/file.ext file.ext # Don't forget the 2nd arg! # Ctrl-D to exit ``` -- cgit v1.2.3