PowerShell ha molti degli stessi comandi di Linux. pwd
è l'equivalente del comando.
Quando digiti pwd
in Powershell, è un alias di Get-Location
.
Oltre a Get-Location
e i suoi Alias, puoi anche usare la variabile automatica $pwd
.
Il $pwd
variabile è utile perché hai accesso diretto ai membri di PathInfo. Ad esempio
$pwd.Path.PadLeft(80)
$pwd.Drive
E se mai vuoi sapere quali membri ci sono puoi semplicemente reindirizzare il command\alias a 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 dovrebbe fare al caso tuo
Come ha detto Thiago, puoi usare questi alias:gl
o pwd