summaryrefslogtreecommitdiffstats
path: root/kjsembed/tests/test_shellexec.js
blob: 51a2fbddeb5b141746c76319b96708c478bf8a82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env kjscmd

println( "Hello World" );
var proc = new Process(this);
proc.connect( proc, "readyReadStdout()", this, "stdOut" );
proc.connect( proc, "readyReadStderr()", this, "stdError" );
proc.connect( proc, "processExited()", this, "done" );

proc.addArgument("ps");
proc.addArgument("-l");

if ( !proc.start() )
{
	println( "Could not start process" );
}

println( "test single cmd" );

var output = shell("ps aux");
println( "Shell responds: " + output );

application.exec();

function done()
{
	while ( proc.canReadLineStdout )
		stdOut();
	while ( proc.canReadLineStderr )
		stdError();
	println("Process done with " + proc.exitStatus );
	exit(0);
}

function stdError( )
{
	var errorMessage = proc.readLineStderr();
	println( "StdErr: " + errorMessage );
}

function stdOut( )
{
	var message = proc.readLineStdout();
	println( "StdOut: " + message );
}