A simple interactive ad hoc http server
Need to make a specific file downloadable on a linux server so another server or tool can pick it up for download?
Let's say for example you need to present a .iso file to some specitic tool as http source
f2http my_installer.iso 80Just Control+C to stop the server.
On a debian/ubuntu based distro it can build to a debian package.
make
make deb
sudo apt install $(ls ./f2http*.deb)If you are not on a debian/ubuntu based distribution, use the following:
make
sudo make install