the simplest ftp server

This commit is contained in:
Ville Rantanen
2017-01-23 15:06:33 +02:00
parent a001b95d7d
commit 70f3f04ebe

7
web/ftpserver Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh
python -c "import pyftpdlib" >/dev/null 2>&1 || {
echo pyftpdlib is not installed: \\n pip install --user pyftpdlib
exit
}
python -m pyftpdlib "$@"