Windows PowerShell equivalente a Unix / Linux 'pwd'?

23

Em acompanhamento à pergunta cmd.exe , o que é o PowerShell? equivalente a echo %cd% ou Linux / Unix pwd ?

    
por warren 09.06.2011 / 15:22

4 respostas

29

O PowerShell tem muitos dos mesmos comandos do Linux. pwd é o equivalente do comando.

Quando você digita pwd no Powershell, é um alias para Get-Location .

    
por 09.06.2011 / 15:38
19

Além de Get-Location e seus aliases, você também pode usar a variável automática $pwd .

A variável $pwd é legal porque você tem acesso direto aos membros da PathInfo. Por exemplo,

$pwd.Path.PadLeft(80)
$pwd.Drive

E se você quiser saber quais membros existem, basta enviar o comando \ alias para Get-Member :

PS C:\Users\your-name-here\Desktop> pwd|Get-Member


   TypeName: System.Management.Automation.PathInfo

Name         MemberType Definition
----         ---------- ----------
Equals       Method     bool Equals(System.Object obj)
GetHashCode  Method     int GetHashCode()
GetType      Method     type GetType()
ToString     Method     string ToString()
Drive        Property   System.Management.Automation.PSDriveInfo Drive {get;}
Path         Property   System.String Path {get;}
Provider     Property   System.Management.Automation.ProviderInfo Provider {get;}
ProviderPath Property   System.String ProviderPath {get;}
    
por 09.06.2011 / 16:00
3

Get-Location cmdlet deve fazer o truque

Como o Thiago mencionou, você pode usar esses aliases: gl ou pwd

    
por 09.06.2011 / 15:41
3

É pwd . Você pode "string", colocando-o entre aspas. Mais ainda, você pode construir caminhos como: "$pwd\bin" .

    
por 25.06.2013 / 10:17