| Chapter 5:
Accessing Files and Directories
Commands:
| Command |
Description |
Examples |
| cal |
The cal utility writes a Gregorian calendar to standard output. |
$ cal
$ cal 2000
$ cal 9 2005 |
| cd |
The cd utility will
change the working directory of the current shell execution
environment |
$ cd
$ cd ..
$ cd /home/user2/dir1
$ cd ./dir1
|
| rm |
Remove directory entries |
-i,-r
$ rm -r dir1
|
|