Windows PowerShell相当于Unix / Linux`pwd`?


Answers:


35

PowerShell具有许多与Linux相同的命令。pwd是等效命令。

当您输入pwdPowershell时,它是的别名Get-Location


1
“那很容易” ..男孩,我感到有点sheep不休:)
沃伦

22

除了Get-Location及其别名之外,您还可以使用自动变量$pwd

$pwd变量很不错,因为您可以直接访问PathInfo成员。例如

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

而且,如果您想知道成员是什么,只需将command \ alias传递给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;}

很酷!我需要找到有关PowerShell的很好的教程介绍
warren,

1
将鼠标悬停在问题中的Powershell标记上。单击常见问题解答链接。查看列表中的第二项。
EBGreen

4

Get-Location cmdlet应该可以解决问题

如Thiago所述,您可以使用以下别名:glpwd


3

pwd。您可以通过将其放在引号中“进行字符串化”。此外,您可以建立如下路径:"$pwd\bin"

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.