the simplest ftp server
This commit is contained in:
7
web/ftpserver
Executable file
7
web/ftpserver
Executable 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 "$@"
|
||||
Reference in New Issue
Block a user