FTP
1) Linux FTP server with anonymous access
python3 -m pyftpdlib -p 21 -u anonymous -P anonymousDownload single file
wget ftp://username:password@ftp.example.com/path/to/file.txtwget -r ftp://username:password@ftp.example.com/directory/wget ftp://ftp.example.com/file.txtcurl -u username:password ftp://ftp.example.com/file.txt -o localfile.txtcurl -u username:password ftp://ftp.example.com/directory/Last updated