⑴ [rootlocalhost ~]# cd /opt/soft/
⑵ [rootlocalhost soft]# pwd
⑶ /opt/soft
⑷ [rootlocalhost soft]# cd ~
⑸ [rootlocalhost ~]# pwd
⑹ /root
⑺例:跳转到指定目录
⑻cd /opt/soft
⑼ [rootlocalhost ~]# cd /opt/soft
⑽ [rootlocalhost soft]# pwd
⑾ /opt/soft
⑿ [rootlocalhost soft]# cd jdk.._/
⒀ [rootlocalhost jdk.._]# pwd
⒁ /opt/soft/jdk.._
⒂ [rootlocalhost jdk.._]#
⒃跳转到指定目录,从根目录开始,目录名称前加 / ,当前目录内的子目录直接写名称即可
⒄例四:返回进入此目录之前所在的目录
⒅ [rootlocalhost soft]# pwd
⒆ /opt/soft
⒇ [rootlocalhost soft]# cd -
⒈ [rootlocalhost ~]# pwd
⒉ [rootlocalhost ~]# cd -
⒊ /opt/soft
⒋ [rootlocalhost soft]#
⒌例五:把上个命令的参数作为cd参数使用。
⒍ [rootlocalhost soft]# cd !$
⒎ [rootlocalhost ~]# cd !$
⒏ /opt/soft
⒐ [rootlocalhost soft]#
⒑上面就是Linux cd命令的介绍了,cd命令可以说是Linux使用率最高的两个命令之一,以后你在Linux的操作中会经常使用到它。