commands over SSH

BlitzMax Forums/BlitzMax Programming/commands over SSH

Is it possible for me to send/recieve commands via SSH to a linux server using bmax?

sure.. just read the specification!

http://www.google.com/search?hl=en&q=ssh+protocol&btnG=Google+Search

http://tools.ietf.org/html/rfc4250
http://tools.ietf.org/html/rfc4251
http://tools.ietf.org/html/rfc4252
http://tools.ietf.org/html/rfc4253
http://tools.ietf.org/html/rfc4254
http://tools.ietf.org/html/rfc4255
http://tools.ietf.org/html/rfc4256
http://tools.ietf.org/html/rfc4335
http://tools.ietf.org/html/rfc4345
http://tools.ietf.org/html/rfc4419
http://tools.ietf.org/html/rfc4432
http://tools.ietf.org/html/rfc4462
http://tools.ietf.org/html/rfc4716
http://tools.ietf.org/html/rfc4819

and so on...

I ran into this not long ago. I ended up with someone creating a custom C++ wrapper for just the parts of the "easy" CURL implementation that I needed, and then using Bmax to wrap that.