Linux directory switching implementation code example

Linux directory switching implementation code example

Switching files is a common operation in Linux. When you first learn Linux, the first command you come into contact with is file switching.

pwd: Display the current directory

~: root directory

/: root directory

ls: View all files and directories in the current directory

cd usr Switch to the usr directory under this directory

cd ../ Switch to the previous directory

cd / Switch to the system root directory

cd ~ Switch to the user's home directory

cd - switch to the previous directory (go back)

Code Sample

yangw@codecompile:~/RK3288_Lakala/kernel/arch/arm/boot/dts$ cd -
  /home/yangw
  yangw@codecompile:~$ pwd
  /home/yangw
  yangw@codecompile:~$ cd - 
  /home/yangw/RK3288_Lakala/kernel/arch/arm/boot/dts
  yangw@codecompile:~/RK3288_Lakala/kernel/arch/arm/boot/dts$ pwd
  /home/yangw/RK3288_Lakala/kernel/arch/arm/boot/dts
  yangw@codecompile:~/RK3288_Lakala/kernel/arch/arm/boot/dts$ cd ~
  yangw@codecompile:~$ pwd
  /home/yangw
  yangw@codecompile:~$ cd /
  yangw@codecompile:/$ pwd
  /
  yangw@codecompile:/$ cd -
  /home/yangw

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to switch directories efficiently in Linux
  • How to determine whether files and directories exist in Linux shell
  • How to extract file names and directory names from Linux shell
  • How to change the MySQL database directory location under Linux (CentOS) system
  • Find the running nginx directory in Linux system
  • Batch extract all directories and file names under a folder in Linux
  • Detailed explanation of how to find files filtered by time in a directory in Linux
  • How to enter directory/folder in Linux without using CD command

<<:  Introduction to reactive function toRef function ref function in Vue3

>>:  Summary of MySQL usage specifications

Recommend

MySQL 5.7.23 decompression version installation tutorial with pictures and text

It is too troublesome to find the installation tu...

Steps for docker container exit error code

Sometimes some docker containers exit after a per...

Vue realizes screen adaptation of large screen pages

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

Detailed explanation of Vuex overall case

Table of contents 1. Introduction 2. Advantages 3...

JavaScript to achieve Taobao product image switching effect

JavaScript clothing album switching effect (simil...

HTML table tag tutorial (11): horizontal alignment attribute ALIGN

In the horizontal direction, you can set the alig...

MySQL 8.0.13 installation and configuration method graphic tutorial

This article shares the installation and configur...

Specific use of the wx.getUserProfile interface in the applet

Recently, WeChat Mini Program has proposed adjust...

Solution to the 404/503 problem when logging in to TeamCenter12

TeamCenter12 enters the account password and clic...