linux cd命令的常用用法(linux系统下cd命令怎么用)

Linux cd命令用于切换当前工作目录至 dirName(目录参数),我来为大家讲解一下关于linux cd命令的常用用法?跟着小编一起来看一看吧!

linux cd命令的常用用法(linux系统下cd命令怎么用)

linux cd命令的常用用法

Linux cd命令用于切换当前工作目录至 dirName(目录参数)。

其中 dirName 表示法可为绝对路径或相对路径。若目录名称省略,则变换至使用者的 home 目录 (也就是刚 login 时所在的目录)。

另外,"~" 也表示为 home 目录 的意思,"." 则是表示目前所在的目录,".." 则表示目前目录位置的上一层目录。

一、Linux cd命令语法

cd [dirName]

dirName:要切换的目标目录。

二、Linux cd命令实例

跳入test目录:

[root@/root/linuxdaxue.com]#cd testDir/ [root@/root/linuxdaxue.com/testDir]#ls file1 file2 file3

跳至上层目录

[root@/root/linuxdaxue.com/testDir]#cd .. [root@/root/linuxdaxue.com]#ls testDir

跳至上上层目录

[root@/root/linuxdaxue.com/testDir]#cd ../../ [root@/root]#ls

跳入用户主目录

[root@/root/linuxdaxue.com/testDir]#ls file1 file2 file3 [root@/root/linuxdaxue.com/testDir]#cd ~/ [root@/root]#pwd /root

使用绝对路径

[root@/root]#cd /root/linuxdaxue.com/testDir [root@/root/linuxdaxue.com/testDir]#ls file1 file2 file3

使用环境变量

[root@/root]#cd $TEST_PATH [root@/root/linuxdaxue.com/testDir]#ls file1 file2 file3

跳入上次使用目录

[root@/root]#pwd /root [root@/root]#cd - /root/linuxdaxue.com/testDir [root@/root/linuxdaxue.com/testDir]#

cd命令比较简单,主要用来切换工作目录,希望大家能熟练掌握。

,

免责声明:本文仅代表文章作者的个人观点,与本站无关。其原创性、真实性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容文字的真实性、完整性和原创性本站不作任何保证或承诺,请读者仅作参考,并自行核实相关内容。文章投诉邮箱:anhduc.ph@yahoo.com

    分享
    投诉
    首页