nashorn/samples/exec.js
changeset 31489 fcccd041e11b
parent 31100 4f7ba6a0bb37
--- a/nashorn/samples/exec.js	Tue Jun 30 08:51:06 2015 -0700
+++ b/nashorn/samples/exec.js	Wed Jul 01 16:26:25 2015 +0200
@@ -39,9 +39,10 @@
 $EXEC("cat", "Hello, world!")
 
 // Additional arguments can be passed after the stdin argument, as an array of
-// strings, or a sequence of varargs:
-$EXEC("ls", "" /* no stdin */, "-l", "-a")
-$EXEC("ls", "" /* no stdin */, ["-l", "-a"])
+// 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"])
 
 // Output of running external commands is returned from $EXEC:
 print($EXEC("ls"))