Wish/wish-sys/sys-part/bin/pwd.js
2013-08-03 16:29:14 +02:00

7 lines
193 B
JavaScript

var PwdClass = function() {
}
PwdClass.prototype = new Process();
PwdClass.prototype.main = function(args) {
this.files['stdout'].write(this.Environment.array['PWD'] + "\n");
this.exit(0);
}