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
.
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;}
Get-Location
cmdlet deve fazer o truque
Como o Thiago mencionou, você pode usar esses aliases: gl
ou pwd
É pwd
. Você pode "string", colocando-o entre aspas. Mais ainda, você pode construir caminhos como: "$pwd\bin"
.
Tags windows powershell linux unix