選項
Cd:切換回家目錄
Cd ~:切換回本身的家目錄
Cd~USERNAME:切換至指定用戶的家目錄
Cd -:在上一次所在目錄與當前目錄之間來回切換
注意:bash中,~表示家目錄bash
[root@localhost ~]# cd /etc/ [root@localhost etc]# cd - /root [root@localhost ~]# cd - /etc [root@localhost etc]#
[root@localhost ~]# cd ~tom [root@localhost tom]# pwd /home/tom [root@localhost tom]# cd ~ [root@localhost ~]# pwd /root