|
|
This article includes a list of references, related reading or external links, but its sources remain unclear because it lacks inline citations. Please improve this article by introducing more precise citations. (March 2010) |
In computing, pushd and popd are commands in various Unix, DOS and Microsoft Windows command line interpreters (shells) such as Bash, cmd.exe, 4DOS/4NT and Windows PowerShell. Both commands are used to work with the command line directory stack.
The pushd command saves the current working directory in memory so it can be returned to at any time, optionally changing to a new directory. The popd command returns to the path at the top of the directory stack.
In the Windows PowerShell, pushd is a predefined command alias for the Push-Location Cmdlet and popd is a predefined command alias for the Pop-Location Cmdlet. Both serve basically the same purpose as the Unix-like pushd and popd commands.
|
Contents
|
pushd [path | ..]
Arguments:
path This optional command-line argument specifies the directory to make the current directory. If path is omitted, the path at the top of the directory stack is used.popd
[/usr/ports]$ pushd /etc /etc /usr/ports [/etc]$ popd /usr/ports [/usr/ports]$
C:\Users\root>pushd \ C:\>popd C:\Users\root>
|
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
| This Unix-related article is a stub. You can help Wikipedia by expanding it. |
| This Microsoft Windows article is a stub. You can help Wikipedia by expanding it. |
This entry is from Wikipedia, the leading user-contributed encyclopedia. It may not have been reviewed by professional editors (see full disclaimer)