Difference between revisions of "CraftOS Shell"
From ComputerCraft Wiki
(Created page with "If you're familliar with *NIX-like OSes, then this should be very easy. But this guide can still come in handy. <!-- Please finish this. -->") |
|||
Line 1: | Line 1: | ||
If you're familliar with *NIX-like OSes, then this should be very easy. But this guide can still come in handy. | If you're familliar with *NIX-like OSes, then this should be very easy. But this guide can still come in handy. | ||
− | + | First of all: navigating. | |
+ | {| class="wikitable" | ||
+ | |- | ||
+ | ! Command | ||
+ | ! Aliases | ||
+ | ! Description | ||
+ | ! Example | ||
+ | |- | ||
+ | | ls | ||
+ | | dir | ||
+ | | '''L'''i'''s'''ts all files and folders in a directory | ||
+ | | <pre>ls</pre> | ||
+ | |- | ||
+ | | cd | ||
+ | | | ||
+ | | Changes the '''c'''urrent '''d'''irectory | ||
+ | | <pre>cd /disk</pre> | ||
+ | |} |
Revision as of 19:57, 13 March 2012
If you're familliar with *NIX-like OSes, then this should be very easy. But this guide can still come in handy.
First of all: navigating.
Command | Aliases | Description | Example |
---|---|---|---|
ls | dir | Lists all files and folders in a directory | ls |
cd | Changes the current directory | cd /disk |