将当前位置复制到剪贴板

时间:2017-04-26 11:44:59

标签: powershell

如何将当前工作目录复制到剪贴板?

PS C:\jacek> pwd | CLIP

我得到的内容如下。如何只复制没有任何空格或描述的位置/值?

Path
--
C:\jacek

2 个答案:

答案 0 :(得分:18)

更新您的代码,只返回Path

(pwd).Path | CLIP

答案 1 :(得分:6)

在PowerShell 5.0及更高版本中,您还可以使用

(pwd).Path | scb

scb (pwd).Path

其中scb是Set-Clipboard

的别名

https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/set-clipboard?view=powershell-5.1

提供的文件