src/sample/nashorn/exec.js
changeset 47247 42bc5bf0c654
parent 47216 71c04702a3d5
--- 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"))