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