You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently have sshPairs which takes a list of text tuples. But actually any command that supports running subcommands, like su -c, bash -c, ssh should support the Sh monad so we can run the code more or less like this:
shelly $do
ssh "machine"$do...
This way we get full typechecked programs in the subcommand.
The text was updated successfully, but these errors were encountered:
Its a good idea. I don't think this would be the Sh monad since the semantics are going to end up being different. A different monad could support a more limited API: it would be a lot of work to attempt to support the entire Shelly API running remotely.
We currently have
sshPairs
which takes a list of text tuples. But actually any command that supports running subcommands, likesu -c
,bash -c
,ssh
should support theSh
monad so we can run the code more or less like this:This way we get full typechecked programs in the subcommand.
The text was updated successfully, but these errors were encountered: