Comment on $ cat ~/myfile | curl -X PUT --upload-file “-” https://transfer.sh/myfile.txtComments−stinos10y PS> cat myfile | out-string | iwr -Method Put -Uri https://transfer.sh/myfile.txt−stephengillie10y PS> Invoke-SSHCommand { cat ~/myfile | curl -X PUT --upload-file “-” https://transfer.sh/myfile.txt } -session 0 SSH.NET: https://sshnet.codeplex.com/
Comments