4176N/A." Copyright (c) 2006, 2011, Oracle and/or its affiliates. All rights reserved.
0N/A." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A."
0N/A." This code is free software; you can redistribute it and/or modify it
0N/A." under the terms of the GNU General Public License version 2 only, as
0N/A." published by the Free Software Foundation.
0N/A."
0N/A." This code is distributed in the hope that it will be useful, but WITHOUT
0N/A." ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A." FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A." version 2 for more details (a copy is included in the LICENSE file that
0N/A." accompanied this code).
0N/A."
0N/A." You should have received a copy of the GNU General Public License version
0N/A." 2 along with this work; if not, write to the Free Software Foundation,
0N/A." Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A."
2362N/A." Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A." or visit www.oracle.com if you need additional information or have any
2362N/A." questions.
1178N/A."
4880N/A.TH jrunscript 1 "16 Mar 2012"
0N/A
0N/A.LP
1178N/A.SH "Name"
0N/Ajrunscript \- command line script shell
0N/A.LP
0N/A.SH "SYNOPSIS"
0N/A.LP
0N/A.nf
0N/A\f3
0N/A.fl
0N/A\fP\f3jrunscript\fP [ \f2options\fP ] [ arguments... ]
0N/A.fl
0N/A.fi
0N/A
0N/A.LP
0N/A.SH "PARAMETERS"
0N/A.LP
1178N/A.RS 3
0N/A.TP 3
0N/Aoptions
0N/AOptions, if used, should follow immediately after the command name.
0N/A.TP 3
0N/Aarguments
0N/AArguments, if used, should follow immediately after options or command name.
1178N/A.RE
1178N/A
0N/A.LP
0N/A.SH "DESCRIPTION"
0N/A.LP
0N/A.LP
0N/A\f3jrunscript\fP is a command line script shell. jrunscript supports both an interactive (read\-eval\-print) mode and a batch (\-f option) mode of script execution. This is a scripting language independent shell. By default, JavaScript is the language used, but the \-l option can be used to specify a different language. Through Java to scripting language communication, jrunscript supports "exploratory programming" style.
0N/A.LP
0N/A.LP
0N/A\f3NOTE:\fP This tool is \f3experimental\fP and may \f3not\fP be available in future versions of the JDK.
0N/A.LP
0N/A.SH "OPTIONS"
0N/A.LP
1178N/A.RS 3
0N/A.TP 3
0N/A\-classpath path
0N/ASpecify where to find the user's .class files that are accessed by the script.
0N/A.TP 3
0N/A\-cp path
0N/AThis is a synonym for \-classpath \f2path\fP
0N/A.TP 3
0N/A\-Dname=value
0N/ASet a Java system property.
0N/A.TP 3
0N/A\-J<flag>
0N/APass <flag> directly to the Java virtual machine on which jrunscript is run.
0N/A.TP 3
0N/A\-l language
0N/AUse the specified scripting language. By default, JavaScript is used. Note that to use other scripting languages, you also need to specify the corresponding script engine's jar file using \-cp or \-classpath option.
0N/A.TP 3
0N/A\-e script
0N/AEvaluate the given script. This option can be used to run "one liner" scripts specified completely on the command line.
0N/A.TP 3
0N/A\-encoding encoding
0N/ASpecify the character encoding used while reading script files.
0N/A.TP 3
0N/A\-f script\-file
0N/AEvaluate the given script file (batch mode).
0N/A.TP 3
0N/A\-f \-
0N/ARead and evaluate a script from standard input (interactive mode).
0N/A.TP 3
0N/A\-help\
0N/AOutput help message and exit.
0N/A.TP 3
0N/A\-?\
0N/AOutput help message and exit.
0N/A.TP 3
0N/A\-q\
0N/AList all script engines available and exit.
1178N/A.RE
1178N/A
0N/A.LP
0N/A.SH "ARGUMENTS"
0N/A.LP
0N/A.LP
0N/AIf [arguments...] are present and if no \f3\-e\fP or \f3\-f\fP option is used, then the first argument is the script file and the rest of the arguments, if any, are passed as script arguments. If [arguments..] and \f3\-e\fP or \f3\-f\fP option are used, then all [arguments..] are passed as script arguments. If [arguments..], \f3\-e\fP and \f3\-f\fP are missing, interactive mode is used. Script arguments are available to a script in an engine variable named "arguments" of type String array.
0N/A.LP
0N/A.SH "EXAMPLES"
0N/A.LP
4176N/A.SS
4176N/AExecuting inline scripts
0N/A.LP
0N/A.nf
0N/A\f3
0N/A.fl
0N/Ajrunscript \-e "print('hello world')"
0N/A.fl
0N/Ajrunscript \-e "cat('http://java.sun.com')"
0N/A.fl
0N/A\fP
0N/A.fi
0N/A
0N/A.LP
4176N/A.SS
4176N/AUse specified language and evaluate given script file
0N/A.LP
0N/A.nf
0N/A\f3
0N/A.fl
0N/Ajrunscript \-l js \-f test.js
0N/A.fl
0N/A\fP
0N/A.fi
0N/A
0N/A.LP
4176N/A.SS
4176N/AInteractive mode
0N/A.LP
0N/A.nf
0N/A\f3
0N/A.fl
0N/Ajrunscript
0N/A.fl
4176N/Ajs> print('Hello World\\n');
4176N/A.fl
4176N/AHello World
0N/A.fl
4176N/Ajs> 34 + 55
0N/A.fl
4176N/A89.0
0N/A.fl
4176N/Ajs> t = new java.lang.Thread(function() { print('Hello World\\n'); })
4176N/A.fl
4176N/AThread[Thread\-0,5,main]
0N/A.fl
4176N/Ajs> t.start()
0N/A.fl
4176N/Ajs> Hello World
4176N/A.fl
4176N/A
0N/A.fl
0N/Ajs>
0N/A.fl
0N/A\fP
0N/A.fi
0N/A
0N/A.LP
4176N/A.SS
4176N/ARun script file with script arguments
0N/A.LP
0N/A.nf
0N/A\f3
0N/A.fl
0N/Ajrunscript test.js arg1 arg2 arg3
0N/A.fl
0N/A\fP
0N/A.fi
0N/A
0N/A.LP
0N/Atest.js is script file to execute and arg1, arg2 and arg3 are passed to script as script arguments. Script can access these using "arguments" array.
0N/A.SH "SEE ALSO"
0N/A.LP
0N/A.LP
4176N/AIf JavaScript is used, then before evaluating any user defined script, jrunscript initializes certain built\-in functions and objects. These JavaScript built\-ins are documented in
4176N/A.na
4176N/A\f2jsdocs\fP @
4176N/A.fi
4880N/Ahttp://docs.oracle.com/javase/7/docs/technotes/tools/share/jsdocs/allclasses\-noframe.html.
0N/A.LP
0N/A