Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Good directory jumper for Powershell?

I just heard about the (almost impossible to google) z directory jumper for bash

Does anyone know of a powershell equivalent, or anything that even approaches the functionality?

like image 390
George Mauer Avatar asked Jul 25 '12 16:07

George Mauer


People also ask

How do I go to a directory in PowerShell?

Typing CD\ causes PowerShell to move to the root directory. As you can see, you can use the CD.. or CD\ command to move to a lower level within the folder hierarchy. You can also use the CD command to enter a folder. Just type CD, followed by the folder name.

How do I set the location in PowerShell?

To add a location to a location stack, use the Push-Location cmdlet. To get a location from a location stack, use the Pop-Location cmdlet. To display the locations in the current location stack, use the Stack parameter of the Get-Location cmdlet.

How do I run Windows System32 in PowerShell?

Run PowerShell using its executable file You can also open PowerShell using File Explorer. To access the 32-bit version of the program, navigate to: “C:\Windows\System32\WindowsPowerShell\v1. 0” (or copy and paste the path into the address bar). There, you find the powershell executable on 32-bits.

What is Z PowerShell?

z lets you quickly navigate the file system in PowerShell based on your cd command history. It's a port of the z bash shell script.


1 Answers

For PowerShell there is Jump-Location and Z. You might also want to check out Go.

like image 186
Lars Truijens Avatar answered Sep 28 '22 10:09

Lars Truijens