From 3aab0333505814787b6decc2d33621f7752555c8 Mon Sep 17 00:00:00 2001 From: Ville Rantanen Date: Mon, 23 Jan 2017 15:07:19 +0200 Subject: [PATCH] the simplest ftp server --- web/ftpserver | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/ftpserver b/web/ftpserver index 64cdf15..2b31874 100755 --- a/web/ftpserver +++ b/web/ftpserver @@ -1,7 +1,8 @@ #!/bin/sh python -c "import pyftpdlib" >/dev/null 2>&1 || { - echo pyftpdlib is not installed: \\n pip install --user pyftpdlib + echo "pyftpdlib is not installed:" + echo " pip install --user pyftpdlib" exit } python -m pyftpdlib "$@"