super short pwd command

This commit is contained in:
overflowerror 2013-08-03 16:29:14 +02:00
parent 17625bd293
commit aa27d2bebc

View file

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