Windows PowerShell equivalente a Unix / Linux `pwd`?


Risposte:


35

PowerShell ha molti degli stessi comandi di Linux. pwdè il comando equivalente.

Quando si digita pwdPowershell, è un alias di Get-Location.


1
"è stato facile" .. ragazzo mi sento imbarazzato :)
warren,

22

Oltre Get-Locatione i suoi alias, puoi anche usare la variabile automatica $pwd.

La $pwdvariabile è utile perché hai accesso diretto ai membri PathInfo. Per esempio

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

E se mai vuoi sapere quali membri ci sono, puoi semplicemente inoltrare il comando \ 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;}

molto bello! Devo trovare una buona introduzione al tutorial su PowerShell
warren,

1
Passa il mouse sopra il tag Powershell nella tua domanda. Fai clic sul link Domande frequenti. Guarda il secondo elemento nell'elenco.
EBGreen

4

Get-Location il cmdlet dovrebbe fare il trucco

Come accennato da Thiago, puoi usare questi alias: glopwd


3

Lo è pwd. È possibile "stringere" inserendolo tra virgolette. Più così, si può costruire percorsi come così: "$pwd\bin".

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.