the simplest ftp server

This commit is contained in:
Ville Rantanen
2017-01-23 15:07:19 +02:00
parent 70f3f04ebe
commit 3aab033350

View File

@@ -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 "$@"