mirror of
https://github.com/sigmasternchen/Wish
synced 2025-03-15 23:48:55 +00:00
7 lines
233 B
JavaScript
7 lines
233 B
JavaScript
var EchoClass = function() {}
|
|
EchoClass.prototype = new Process();
|
|
EchoClass.prototype.main = function(args){
|
|
args.splice(0,1); // we do not want to echo the "echo"
|
|
this.files["stdout"].write(args.join(" ")+"\n");
|
|
this.exit(0);
|
|
}
|