Which of the following commands changes the current directory in which you are working?

Introduction

Many Linux commands, such as the ls command, affect the current working directory. The current working directory is the directory your terminal window or command prompt is working in.

Linux treats the Home directory as the default working directory. Using the cd command in Linux allows you to change the current working directory.

In this tutorial, we will explain the cd command syntax and show examples of how you can use it.

Which of the following commands changes the current directory in which you are working?

Prerequisites

  • A system running a Linux distribution.
  • A user account with sudo privileges.
  • Access to the terminal window or command line.

Linux CD Command Syntax

The cd command in Linux uses the following syntax:

cd [options] [directory]

In the command above:

  • cd: Invokes the cd command.
  • [options]: Adding options changes the way the command executes.
  • [directory]: Path to the directory you want to move into.

For instance, to move to the Desktop directory, run:

cd /home/phoenixnap/Desktop

If the command executes successfully, the current working directory is indicated in the terminal interface:

Which of the following commands changes the current directory in which you are working?

If the terminal interface does not indicate the current working directory, using the pwd command displays it as the output:

pwd

Which of the following commands changes the current directory in which you are working?

The cd command uses the following options:

  • -L: Force following symbolic links. This option is enabled by default.
  • -P: Do not follow symbolic links. This option resolves the symbolic link to determine the parent directory before moving to the user-requested directory.
  • -e: Exit with a non-zero status if using the -P option and the command cannot resolve the symbolic link.
  • [email protected]: Present a file with extended attributes as a directory containing the file attributes.

The Linux cd command offers several ways to navigate and change the working directory using the terminal window. It lets you change directories using relative and absolute paths, move to parent or root directories, or find directories with incomplete names.

Note: The cd command is a built-in shell command. This means that its behavior varies slightly between shells since it uses shell environment variables. Learn more in our guide to environment variables in Linux.

Changing Directory

To change to a new working directory, use the cd command with a directory path.

cd [path to directory]

For instance, moving to Example_Directory, located in the Home directory:

cd Example_Directory

Which of the following commands changes the current directory in which you are working?

Change Directory and List Content

Append the ls command to the cd command using the && flag to change to a new directory and list its content simultaneously.

cd [path to directory] && ls

Using the previous example:

cd Example_Directory && ls

Which of the following commands changes the current directory in which you are working?

Changing Directory Using an Absolute Path

Using an absolute path to the directory means that the path starts from the root directory. For instance, changing to the Downloads directory using its absolute path:

cd /home/phoenixnap/Downloads

Which of the following commands changes the current directory in which you are working?

Changing Directory Using a Relative Path

A relative path is a path to a directory relative to the current working directory. A relative path is best used when changing to a subdirectory of the current working directory.

In the example above, the Downloads directory is a subdirectory of Home. In this case, a relative path is a result of omitting the path to the current directory from the path to the new working directory:

cd Downloads

Which of the following commands changes the current directory in which you are working?

Since the path to the current directory is /home/phoenixnap, omitting that part of the absolute path to the Downloads directory (/home/phoenixnap/Downloads) results in a relative path (Downloads).

Changing to the Previous Directory

Adding a dash symbol (-) to the cd command returns the shell to the previous working directory. For instance, after moving from Downloads to Example_Directory, return to Downloads with:

cd -

Which of the following commands changes the current directory in which you are working?

Changing to Parent Directory

To change to the parent of the current directory, add two period symbols (..) to the cd command.

For example, to move from Example01 to its parent directory Example_Directory:

cd ..

Which of the following commands changes the current directory in which you are working?

Changing to the Root Directory

Add the slash symbol (/) to the cd command to move into the system's working directory:

cd /

Which of the following commands changes the current directory in which you are working?

Changing Back to the Home Directory

In Linux, the Home directory represents the default working directory. Using the cd command without any options or path changes back to the default working directory:

cd

The absence of the current working directory path indicates that you are in the default working directory:

Which of the following commands changes the current directory in which you are working?

Another way to do this is to add the tilde symbol (~) to the cd command:

cd ~

Changing to Another User's Home Directory

Change to another user's Home directory by adding the tilde symbol (~) appended with the appropriate username.

cd ~[username]

For instance, changing to the Home directory of a user named alex:

cd ~alex

Which of the following commands changes the current directory in which you are working?

Changing to a Directory with Spaces in the Name

If the directory name contains blank spaces, change to it by surrounding the name with single quotation marks (' '). Alternatively, append a backslash symbol (\) to every word in the name except the last one:

cd 'Directory name with blank spaces'
cd Directory\ name\ with\ blank\ spaces

For example, changing to a directory named This is a directory:

cd 'This is a directory'
cd This\ is\ a\ directory

Which of the following commands changes the current directory in which you are working?

Autocomplete Directory Name

If you don't know the name of the directory you are trying to move to, the Linux terminal offers an autocomplete feature. After you start typing the directory name, press the Tab button on your keyboard to get autocomplete suggestions.

For instance, if you know that the name of the directory starts with an X (for instance, XYZ), type:

cd X[Tab]

Conclusion

After reading this tutorial, you should be able to use the Linux cd command to navigate and change the current working directory in the terminal window.

Learn more about other Linux commands in our Linux commands cheat sheet.

What is the command to change the current directory?

Use the cd command to move from your present directory to another directory. You must have execute (search) permission in the specified directory.

What command will change the current working directory to the previous working directory?

In the shell, the command cd - is a special case that changes the current working directory to the previous working directory by exchanging the values of the variables PWD and OLDPWD.

Which command is used to make directory in working directory?

The mkdir (make directory) command in the Unix, DOS, DR FlexOS, IBM OS/2, Microsoft Windows, and ReactOS operating systems is used to make a new directory. It is also available in the EFI shell and in the PHP scripting language. In DOS, OS/2, Windows and ReactOS, the command is often abbreviated to md .

What command would you type to change the current working directory to your desktop?

cd - Changing Directories You can use the cd command, which stands for Change Directory. From within ~ , our home directory, at our prompt $ , we type cd Desktop . Our terminal will change the directory and enter our Desktop folder and our prompt will now indicate that our working directory is ~/Desktop .