Basically it should be possible to just write something into stdin via echo: ``` > f = `echo "const foo = () => { return 4 };" | java -jar lib/closure-compiler-20170521.jar` ... > f => "var foo=function(){return 4};\n" ```