Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
1  
@Andy Arismendi gives here an ineresting function which complete Set-Location, Get-Location, Pop-Location and Push-Location. – JPBlanc Jul 26 '12 at 3:53

2 Answers

I had written cdposh and poshmarks which might be useful for you.

cdposh lets you specify environment variable cdpath and lets you switch directly to a directory on the cdpath (much like path for executables)

poshmarks lets you bookmark and quickly go to directories.

I will see if I can implement z for Powershell

Update: A very early implementation of z for Powershell - posz

share|improve this answer
Cool. Will follow on github – George Mauer Jul 25 '12 at 17:34

The PowerShell Community Extensions has a nested module that will override your CD function and then provide you with a history list of dirs you've navigated to. To can move forwards and backwards through this list or jump to a particular entry e.g.:

6# cd

     # Directory Stack:
   --- ----------------
     0 C:\Users\hillr
     1 C:\Temp
     2 C:\Windows
->   3 C:\Windows\System32

7# cd -
C:\Windows
8# cd +
C:\Windows\System32
9# cd -1
C:\Temp

It's not quite as fancy as frequency based directory jumper but it is surprisingly handy.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.