Handbook: Shell
To use the shell, add rush/bin to your path, and then run "rush" at the regular unix shell. You can also specify the complete path if you'd rather not add it to your path.
Once in the shell, there is no concept of current working directory. Instead, dirs are assigned to variables. There are two variables defined automatically: root, and home. From here you can use square backets to describe a file path. For example, accessing the myproj dir from your home directory would be:
(Note that directories must be specified with a trailing slash.)
A dir object can be operated upon by commands such as ls:
Any dir can access child objects with the same square bracket notation:
Operate on files as single objects:
...or in groups:
There are four commands for the operations typically referred to as move and copy, as follows:
Of course this is Ruby, so go nuts:
