# HG changeset patch # User hannesw # Date 1506074441 -7200 # Node ID 42bc5bf0c6549d02f7f4d3c62461c5785615c015 # Parent 82d45783c13353caeff18b6cf9b70ffefe4c8338 8181792: nashorn samples/exec.js has some incorrect examples Reviewed-by: sundar, hannesw Contributed-by: priya.lakshmi.muthuswamy@oracle.com diff -r 82d45783c133 -r 42bc5bf0c654 src/sample/nashorn/exec.js --- a/src/sample/nashorn/exec.js Fri Sep 22 11:52:38 2017 +0200 +++ b/src/sample/nashorn/exec.js Fri Sep 22 12:00:41 2017 +0200 @@ -38,11 +38,8 @@ // It can also be given a string to use as stdin: $EXEC("cat", "Hello, world!") -// Additional arguments can be passed after the stdin argument, as an array of -// strings, or a sequence of varargs (if there is no stdin, null or undefined -// can be passed): -$EXEC("ls", undefined, "-l", "-a") -$EXEC("ls", undefined, ["-l", "-a"]) +// Arguments can be passed as an array of strings +$EXEC(["ls","-l","-a"]); // Output of running external commands is returned from $EXEC: print($EXEC("ls"))