Help for Piping Server 1.12.9 (Repository: https://github.com/nwtgck/piping-server) ======= Get ======= curl https://hostname/mypath ======= Send ======= # Send a file curl -T myfile https://hostname/mypath # Send a text echo 'hello!' | curl -T - https://hostname/mypath # Send a directory (zip) zip -q -r - ./mydir | curl -T - https://hostname/mypath # Send a directory (tar.gz) tar zfcp - ./mydir | curl -T - https://hostname/mypath # Encryption ## Send cat myfile | openssl aes-256-cbc | curl -T - https://hostname/mypath ## Get curl https://hostname/mypath | openssl aes-256-cbc -d