Good jumper for Powershell?

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

Does anyone know the equivalent of powershell or something that even comes close to functionality?

+6
source share
3 answers

PowerShell has Jump-Location and Z. You can also check out Go .

+4
source

I wrote cdposh and poshmarks which may be useful to you.

cdposh allows cdposh to specify the cdpath environment cdpath and allows you to directly switch to the directory in the cdpath directory (similar to the path for executable files)

poshmarks allows you to bookmark and poshmarks directories quickly.

I will see if I can implement z for Powershell

Update : very early implementation of z for Powershell - posz

+4
source

Community Extensions PowerShell has a nested module that will override your CD function and then provide you with a list of historical directories that you have gone through. To. To can move back and forth through this list or go to a specific entry, for example:

 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 

This is not as strange as the frequency-based jumper, but it is surprisingly convenient.

+1
source

Source: https://habr.com/ru/post/921325/


All Articles