在PowerShell中,|
和>
之间有什么区别?
dir | CLIP #move data to clipboard
dir > CLIP #not moving, creating file CLIP (no extension)
我是否正确地假设|
将当前结果移动到管道中的下一个块并且>
将数据保存到文件中?
还有其他差异吗?
答案 0 :(得分:5)
(不完全)是。
|
和>
是两回事。
>
是一个所谓的重定向运算符。
重定向运算符将流的输出重定向到文件或另一个流。管道运算符将cmdlet或函数的返回对象传递给下一个(或管道的末尾)。管道为整个对象提供其属性,而重定向管道只是其输出。我们可以用一个简单的例子来说明这一点:
#Get the first process in the process list and pipe it to `Set-Content`
PS> (Get-Process)[0] | Set-Content D:\test.test
PS> Get-Content D:/test.test
输出
System.Diagnostics.Process(AdAppMgrSvc)
尝试将对象转换为字符串。
#Do the same, but now redirect the (formatted) output to the file
PS> (Get-Process)[0] > D:\test.test
PS> Get-Content D:/test.test
输出
Handles NPM(K) PM(K) WS(K) CPU(s) Id SI ProcessName ------- ------ ----- ----- ------ -- -- ----------- 420 25 6200 7512 3536 0 AdAppMgrSvc
第三个例子将显示管道操作员的功能:
PS> (Get-Process)[0] | select * | Set-Content D:\test.test
PS> Get-Content D:/test.test
这将输出包含所有进程属性的Hashtable:
@{Name=AdAppMgrSvc; Id=3536; PriorityClass=; FileVersion=; HandleCount=420; WorkingSet=9519104; PagedMemorySize=6045696; PrivateMemorySize=6045696; VirtualMemorySize=110989312; TotalProcessorTime=; SI=0; Handles=420; VM=110989312; WS=9519104; PM=6045696; NPM=25128; Path=; Company=; CPU=; ProductVersion=; Description=; Product=; __NounName=Process; BasePriority=8; ExitCode=; HasExited=; ExitTime=; Handle=; SafeHandle=; MachineName=.; MainWindowHandle=0; MainWindowTitle=; MainModule=; MaxWorkingSet=; MinWorkingSet=; Modules=; NonpagedSystemMemorySize=25128; NonpagedSystemMemorySize64=25128; PagedMemorySize64=6045696; PagedSystemMemorySize=236160; PagedSystemMemorySize64=236160; PeakPagedMemorySize=7028736; PeakPagedMemorySize64=7028736; PeakWorkingSet=19673088; PeakWorkingSet64=19673088; PeakVirtualMemorySize=135786496; PeakVirtualMemorySize64=135786496; PriorityBoostEnabled=; PrivateMemorySize64=6045696; PrivilegedProcessorTime=; ProcessName=AdAppMgrSvc; ProcessorAffinity=; Responding=True; SessionId=0; StartInfo=System.Diagnostics.ProcessStartInfo; StartTime=; SynchronizingObject=; Threads=System.Diagnostics.ProcessThreadCollection; UserProcessorTime=; VirtualMemorySize64=110989312; EnableRaisingEvents=False; StandardInput=; StandardOutput=; StandardError=; WorkingSet64=9519104; Site=; Container=}
答案 1 :(得分:1)
你是对的:
|
在成功/输出流中管道对象将对象从一个cmdlet传递到另一个cmdlet时,您不希望接收cmdlet接收错误,警告,调试消息或详细消息以及它旨在处理的对象。
因此,管道运算符(|)实际上将对象沿输出流(流#1)进行管道传输。
>
将输出发送到指定的文件>>
将输出追加到指定的文件