-1

Is it possible to send stderr or stdout from a linux machine to ubuntu linux machine using at best wget or other common package at worse ( hopefully not ssh access ) ?

So far i can find a way to "stream" stdout and stderr to other machine.

eugeneK
  • 410
  • 2
  • 8
  • 18

1 Answers1

0
stdbuf -oL ./mybash.sh | while IFS= read -r line ; do wget http://myaddress.com/ --post-data="$line"; done;

Found an answer in this post

eugeneK
  • 410
  • 2
  • 8
  • 18