There are three basic operations for managing directories:
create
,
delete
,
rename
.
Managing Directories with UNIX and
Windows compares the commands in Windows and UNIX that implement these operations.
Table15.1.Managing Directories with UNIX and Windows
Action |
MS Windows Command |
UNIX Command |
create |
md folder |
mkdir folder |
delete |
rd folder |
rmdir folder |
rename |
rename oldname newname |
mv oldname newname |
|