The meaning and usage of linux cd

The meaning and usage of linux cd

What does linux cd mean?

In Linux, cd means change directory.

The Linux cd command is used to switch the current working directory to dirName (directory parameter).

The dirName representation can be an absolute path or a relative path. If the directory name is omitted, the directory is changed to the user's home directory (that is, the directory where the user is when he or she logs in).

In addition, "~" also means the home directory, "." means the current directory, and ".." means the directory above the current directory.

grammar

cd [dirName]

dirName: The target directory to switch to.

Examples

Jump to /usr/bin/:

cd /usr/bin

Jump to your home directory:

cd ~

Jump to the two levels above the current directory:

cd ../..

You may also be interested in:
  • How to enter directory/folder in Linux without using CD command
  • Detailed explanation of Linux LCD driver writing
  • Detailed explanation of the use of common Linux commands pwd cd
  • How to install SSL certificate under Linux Nginx and configure WordPress CDN
  • Detailed explanation of cd command usage in Linux
  • How to configure a CDN cache server using Squid reverse proxy in Linux
  • Build your own CDN with DNSPod and Squid (Part 3) Install CentOS Linux

<<:  Master-slave synchronization configuration and read-write separation of MySQL database

>>:  JavaScript implements simple date effects

Recommend

How to install php7 + nginx environment under centos6.6

This article describes how to install php7 + ngin...

An article to understand the usage of typeof in js

Table of contents Base Return Type String and Boo...

How to match the size of text in web design: small text, big experience

With the rise of mobile terminals such as iPad, p...

How to solve the problem of case insensitivity in MySQL queries

question Recently, when I was completing a practi...

Detailed explanation of JQuery selector

Table of contents Basic selectors: Level selector...

Why is the disk space still occupied after deleting table data in MySQL?

Table of contents 1. Mysql data structure 2. The ...

MySQL learning to create and operate databases and table DDL for beginners

Table of contents 1. Operate the database 1.1 Cre...

Undo log in MySQL

Concept introduction: We know that the redo log i...

Linux file systems explained: ext4 and beyond

Today I will take you through the history of ext4...

Vue implements a simple shopping cart example

This article shares the specific code of Vue to i...

Difference between src and href attributes

There is a difference between src and href, and t...

Complete steps to install FFmpeg in CentOS server

Preface The server system environment is: CentOS ...

Docker container operation instructions summary and detailed explanation

1. Create and run a container docker run -it --rm...