8 lines
169 B
Bash
Executable File
8 lines
169 B
Bash
Executable File
#!/bin/sh
|
|
|
|
python -c "import pyftpdlib" >/dev/null 2>&1 || {
|
|
echo pyftpdlib is not installed: \\n pip install --user pyftpdlib
|
|
exit
|
|
}
|
|
python -m pyftpdlib "$@"
|