linux: pushd、popd与dirs用法详解

本文详细介绍了bashshell中的pushd(增加目录到堆栈并切换)、popd(删除并切换到上一级目录)和dirs(查看目录堆栈)命令,包括它们的语法、参数、功能及使用示例。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


pushd

描述

将目录添加到目录堆栈顶部。

  • 将目录添加到目录堆栈顶部,切换当前工作目录到该目录。
  • 旋转目录堆栈,使堆栈的新顶部成为当前工作目录。
  • 没有参数时,交换目录堆栈的前两个目录。

语法

pushd: pushd [-n] [+N | -N | dir]
    Add directories to stack.

    Adds a directory to the top of the directory stack, or rotates
    the stack, making the new top of the stack the current working
    directory.  With no arguments, exchanges the top two directories.

    Options:
      -n	Suppresses the normal change of directory when adding
    		directories to the stack, so only the stack is manipulated.

    Arguments:
      +N	Rotates the stack so that the Nth directory (counting
    		from the left of the list shown by `dirs', starting with
    		zero) is at the top.

      -N	Rotates the stack so that the Nth directory (counting
    		from the right of the list shown by `dirs', starting with
    		zero) is at the top.

      dir	Adds DIR to the directory stack at the top, making it the
    		new current working directory.

    The `dirs' builtin displays the directory stack.

    Exit Status:
    Returns success unless an invalid argument is supplied or the directory
    change fails.

参数

-n    抑制添加目录引起的当前工作目录变化。
+N	把正数第N个放到栈顶(从栈顶0开始)
-N	把倒数第N个放到栈顶(从栈底0开始)
-n	不切换,只压栈
dir	要推送的目录

例子

# 添加目录到堆栈,改变了当前工作目录。
[smaller ~]$ dirs
~
[smaller ~]$ pushd ~/Desktop
~/Desktop ~
[smaller Desktop]$ 
# 添加目录到堆栈,当前工作目录不变
[
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

SmallerFL

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值