ldang264 / jsr223-shell

shell(cmd&bash) of jsr223

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jsr223-shell

Shell script engines for Java implementing JSR 223

Supported shells

  • Bash: using the name bash or the extensions .bash/.sh
  • Cmd.exe: using the name cmd or the extension .bat

Usage

Simply add the JAR to your classpath and follow the Java Scripting Programmer's guide

Build

Run gradlew script, it produces a JAR file in build/libs

How it works

It simply runs the shell as a native process and pass it your script (stored in a temporary file). For the Executable engine it simply takes the script and run it as a single command using Java ProcessBuilder.

Bindings

Script bindings are exported as environment variables using their toString() representation and accessible as such in the shells.

For the Executable engine, bindings will also be replaced in the command line (i.e the script). For instance, running a script like "echo $var" will execute "echo value" if the binding var=value is defined.

Collections and arrays elements are exported with the name of the binding suffixed with an underscore and the index of the element.

Maps entries are exported with the name of the binding suffixed with an underscore and the entry's key.

Binding Examples:

Binding Usage(Windows Cmd) Usage(Linux bash) Output
String aString = "blurp" echo %aString% echo $aString blurp
int aInt = 42 echo %aInt% echo $aInt 42
float aFloat = 42.0 echo %aFloat% echo $aFloat 42.0
String[] anArray = new String[]{"hello", "bob"} echo %anArray_0% %anArray_1% echo $anArray_0 $anArray_1 hello bob
List aList = asList("hello", "bob") echo %aList_0% %aList_1% echo $aList_0 $aList_1 hello bob
Map aMap = singletonMap("hello", "bob") echo %aMap_hello% echo $aMap_hello bob

Of course you noticed that this approach comes with many flaws (nested lists, variables names with underscores...), but at least it should work for simple cases

About

shell(cmd&bash) of jsr223

License:MIT License


Languages

Language:Java 100.0%