首页 > 代码库 > cd 命令

cd 命令

[root@localhost ~]# cd         # 进入当前用户的家目录
[root@localhost ~]# cd ~ # 进入当前用户的家目录
[root@localhost ~]# cd /tmp # 进入指定目录
[root@localhost ~]# cd - # 进入上一次所在的目录
[root@localhost ~]# cd . # 进入当前所在目录
[root@localhost ~]# cd .. # 进入上一层目录

 

 

 

 

 

     

cd 命令