Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use pushd and popd commands in Linux

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

Today, I will talk to you about how to use pushd and popd commands in Linux. Many people may not know much about it. In order to make you understand better, the editor has summarized the following contents for you. I hope you can get something according to this article.

Pushd

Press the directory into the directory stack and carry out the directory switching command

Usage:

Pushd [- n] [+ N |-N | dir]

Parameters:

+ n switch directories, the nth from right to left, whichever is the current directory

-n switch directories, according to the current directory, the nth from left to right

Example:

The code is as follows:

[root@localhost zhangy] # pushd / root

The symbol ~ / home/zhangy # represents the root home directory

The code is as follows:

[root@localhost zhangy] # pushd / home/zhangy/download/

/ home/zhangy/download / home/zhangy ~ # add directory

The code is as follows:

[root@localhost download] # pushd / usr/local/

/ usr/local / home/zhangy/download / home/zhangy ~ # add directory

The code is as follows:

[root@localhost download] # pushd + 1

/ home/zhangy ~ / usr/local / home/zhangy/download

The code is as follows:

[root@localhost zhangy] # # switched to the original directory

The code is as follows:

[root@localhost zhangy] # pushd + 1

~ / usr/local / home/zhangy/download / home/zhangy

The code is as follows:

[root@localhost ~] # # change to home directory

The code is as follows:

[root@localhost ~] # pushd-2

/ usr/local / home/zhangy/download / home/zhangy ~

The code is as follows:

[root@localhost local] # # switched to the / usr/local directory

Popd

Pop the directory off the directory stack

Usage:

Popd [- n] [+ N |-N | dir]

Parameters:

+ n Delete the directory added by pushd, counting from left to right, depending on the current directory, delete the nth.

-n delete the directory added by pushd, and delete the nth from right to left, whichever is the current directory.

Example:

The code is as follows:

[root@localhost dev] # pushd / usr/

/ usr / dev / home/zhangy

The code is as follows:

[root@localhost usr] # popd + 1 # deleted / dev

/ usr / home/zhangy

The code is as follows:

[root@localhost usr] # pushd / home/

/ home/ usr / home/zhangy

The code is as follows:

[root@localhost home] # popd-1 # deleted / usr

/ home/ home/zhangy

After reading the above, do you have any further understanding of how the pushd and popd commands are used in Linux? If you want to know more knowledge or related content, please follow the industry information channel, thank you for your support.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report