终端命令cd(直接更改目录)

终端命令cd(直接更改目录)

该目录Pictures位于/home/mj/Pictures/

终端窗口显示(意思是/home/mj/):

~$

在“Ubuntu 文档:使用终端”中,它说:

…使用“cd /var/www”直接进入/var/ 的 /www 子目录。"

我输入:

cd /Pictures/www

直接进入目录Pictures

终端回复:

bash: cd: /Pictures/www: No such file or directory

如何使用cd命令直接进入目录Pictures

答案1

我的英语不太好,所以这只是一个粗略的解释。

如果你输入

cd /图片/www

在命令行中,您的 PC 会在文件系统开头搜索名为 Pictures 的目录,然后搜索名为 www 的子目录。也许最好打开 nautilus(或您选择的任何其他文件浏览器),然后在地址栏中输入“/”(不带引号)。现在您应该可以看到文件系统的开头,这就像 Windows 上的 C:/windows 目录。如果您现在想转到自己的主文件夹(包含图片和文档等的文件夹),请双击主文件夹,然后单击用户名所在的文件夹。访问主文件夹的另一种方法是在地址栏中输入“~”(同样不带引号)。

现在来看看命令行。如果你想进入你自己的图片文件夹,这意味着你需要输入

cd ~/图片

cd 是命令“更改目录”,“~”表示电脑应该更改到您的主目录。在“~”后添加“/Pictures”现在表示电脑应该将目录更改到您的主目录或“~”目录的子文件夹“Pictures”。

“/www” 只是另一个子文件夹名称的示例。

另一个例子:假设我想进入我的主目录中的“Documents”(不带引号)文件夹的子文件夹“Develop”(不带引号)。我现在需要输入

cd ~/文档/开发

如果您已经在主目录中(如果您启动终端,它会显示 ~$,这表示您在“~”目录或主目录中),您只需输入

cd 图片

并且您不再需要输入“~/”。

我希望我能帮上忙

答案2

使用

cd /home/mj/Pictures

你能看出

cd /home/mj/Pictures/

cd /Pictures/www

前导斜杠表示文件系统的根文件夹。如果您在 中/home/mj/,则使用相对路径(不带前导)/或绝对完整路径/home/mj/Pictures/


NAME
    cd - Change the shell working directory.

SYNOPSIS
    cd [-L|-P] [dir]

DESCRIPTION
    Change the shell working directory.

    Change the current directory to DIR.  The default DIR is the value of the
    HOME shell variable.

    The variable CDPATH defines the search path for the directory containing
    DIR.  Alternative directory names in CDPATH are separated by a colon (:).
    A null directory name is the same as the current directory.  If DIR begins
    with a slash (/), then CDPATH is not used.

    If the directory is not found, and the shell option `cdable_vars' is set,
    the word is assumed to be  a variable name.  If that variable has a value,
    its value is used for DIR.

    Options:
        -L  force symbolic links to be followed
        -P  use the physical directory structure without following symbolic
        links

    The default is to follow symbolic links, as if `-L' were specified.

    Exit Status:
    Returns 0 if the directory is changed; non-zero otherwise.

相关内容