- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
scala-ssh-shell
Sun, 2011-10-09, 08:02
To those who've asked about having an embedded shell accessible via
telnet or ssh, here's a start:
https://github.com/peak6/scala-ssh-shell
It's the same shell you get when you run "scala" with the same
features and limitations. The easiest way to access your live objects
is to register them on a global "object" singleton and import that.
As it ties directly into the compiler it only works for 2.9.1. Needs
sbt 0.7 to build.
Enjoy!
sRp
Sun, 2011-10-09, 09:27
#2
Re: scala-ssh-shell
Is it powershell-like ?Can we build a Powershell with scala?
Sun, 2011-10-09, 13:07
#3
Re: scala-ssh-shell
Good question. I'd been using global "object" singletons that i could import, but that's not always a great solution. I've just added a patch that let's you specify a Seq of bindings, example:
val sshd = new ScalaSshShell(port=4444, name="test", user="user", passwd="fluke", keysResourcePath=Some("/test.ssh.keys"), IndexedSeq( ("pi", "Double", 3.1415926), ("nums", "IndexedSeq[Int]", Vector(1,2,3,4,5))))
$ ssh -l user -p 4444 localhostuser@localhost's password: Connected to test, starting repl... Welcome to Scala version 2.9.1.r0-b20110831114755 (Java HotSpot(TM) 64-Bit Server VM, Java 1.7.0).Type in expressions to have them evaluated.Type :help for more information.test> pi/2 res0: Double = 1.5707963test> nums sumres1: Int = 15
On Sun, Oct 9, 2011 at 3:01 AM, Ittay Dror <ittay.dror@gmail.com> wrote:
val sshd = new ScalaSshShell(port=4444, name="test", user="user", passwd="fluke", keysResourcePath=Some("/test.ssh.keys"), IndexedSeq( ("pi", "Double", 3.1415926), ("nums", "IndexedSeq[Int]", Vector(1,2,3,4,5))))
$ ssh -l user -p 4444 localhostuser@localhost's password: Connected to test, starting repl... Welcome to Scala version 2.9.1.r0-b20110831114755 (Java HotSpot(TM) 64-Bit Server VM, Java 1.7.0).Type in expressions to have them evaluated.Type :help for more information.test> pi/2 res0: Double = 1.5707963test> nums sumres1: Int = 15
On Sun, Oct 9, 2011 at 3:01 AM, Ittay Dror <ittay.dror@gmail.com> wrote:
srparish wrote:Looks nice. How do I bind names to objects so that I can access them from within the shell?To those who've asked about having an embedded shell accessible via telnet or ssh, here's a start: https://github.com/peak6/scala-ssh-shell
It's the same shell you get when you run "scala" with the same features and limitations. The easiest way to access your live objects is to register them on a global "object" singleton and import that. As it ties directly into the compiler it only works for 2.9.1. Needs sbt 0.7 to build. Enjoy! sRp
Sun, 2011-10-09, 13:17
#4
Re: Re: scala-ssh-shell
By "shell" I mean "repl"; when i was googling to see if this already existed i was getting more results for "shell" then "repl" so i thought maybe the former word was better recognized by the community. Scala-ssh-shell allows you to embed the same shell you get when you run "scala" into any jvm so that you can ssh into the jvm and get a scala shell. This can be invaluable for debugging on the fly or testing out new functionality.
That said, scala would be an excellent choice of language to build powershell-like functionality into. With the ability to define operators, and the implicits, one should be able to make a pretty nice os shell.
sRp
On Sun, Oct 9, 2011 at 3:14 AM, IL <iron9light@gmail.com> wrote:
That said, scala would be an excellent choice of language to build powershell-like functionality into. With the ability to define operators, and the implicits, one should be able to make a pretty nice os shell.
sRp
On Sun, Oct 9, 2011 at 3:14 AM, IL <iron9light@gmail.com> wrote:
Is it powershell-like ?Can we build a Powershell with scala?
srparish wrote: Looks nice. How do I bind names to objects so that I can access them from within the shell?