Is it possible to have a one line command in python to do a simple ftp server? I\'d like to be able to do this as quick and temporary way to transfer files to a linux box wi
apt-get install python3-pip pip3 install pyftpdlib python3 -m pyftpdlib -p 21 -w --user=username --password=password -w = write permission -p = desired port --user = give your username --password = give your password