cd

cd

Synopsis
cd [ <dirName> ] change the current directory
Details
The cd command changes the "current" directory for the current isolate, and everything running within it. If a <dirName> argument is provided, that will be the new "current" directory. Otherwise, the current directory is set to the user's "home" directory as given by the "user.home" property.

JNode currently changes the "current" directory by setting the "user.dir" property in the system properties object.

Bugs
The global (to the isolate) nature of the "current" directory is a problem. For example, if you have two non-isolated consoles, changing the current directory in one will change the current directory for the other,