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