pushdpopd 是用于操作命令行目录命令[1][2]它们在DOSMicrosoft WindowsReactOS[3]Unix-like等系统上的4DOSBash[4]C shelltcshHamilton C shellKornShellcmd.exePowerShell命令行解释器中可用。

Quick Facts 原作者, 开发者 ...
Close

概览

pushd命令将当前工作目录存储到内存中,以便随时返回。popd命令返回目录栈顶的路径[5][6]此目录栈由Unix命令dirs或 Windows PowerShell的Get-Location -stack访问。

第一个实现目录栈的Unix shell是Bill Joy的C shell。这套Shell下将目录压栈、出栈的语法与现在基本相同。[7][8]

这两个命令都在FreeCOM——即FreeDOS的命令行界面——可用。[9][来源可靠?]

Windows PowerShell下,pushdPush-Locationcmdlet预定义的aliaspopdPop-Locationcmdlet预定义的alias。两者与pushdpopd命令功能基本相同。

语法

Pushd

pushd [path | ..]

参数:

  • 可选命令行参数path指定即将成为“当前目录”的目录。如果path被省略,则会使用目录栈顶的路径,产生在两个目录之间切换的效果。

Popd

popd

示例

Unix-like

[user@server /usr/ports] $ pushd /etc
/etc /usr/ports
[user@server /etc] $ popd
/usr/ports
[user@server /usr/ports] $

Microsoft Windows与ReactOS

C:\Users\root>pushd C:\Users
C:\Users>popd
C:\Users\root>

DOS批处理文件

@echo off
rem This batch file deletes all .txt files in a specified directory
pushd %1
del *.txt
popd
echo All text files deleted in the %1 directory

另请参阅

参考文献

更多资料

外部链接

Wikiwand in your browser!

Seamless Wikipedia browsing. On steroids.

Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.

Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.