Windows Powershell分析和比较管道结果
使用measure-object和compare-object可以统计和对比管道结果。measure-object允许指定待统计对象的属性。compare-object可以对比对象前后的快照。
统计和计算
使用measure-object可以对对象的属性求最小值、最大值、平均值、和。例如要查看当前目录文件占用空间的情况。
ps c:powershell> ls | measure length count : 19 average : sum : maximum : minimum : property : length ps c:powershell> ls | measure length -average -sum -maximum -minimum count : 19 average : 53768.8421052632 sum : 1021608 maximum : 735892 minimum : 0 property : length
使用measure-object还可以统计文本文件中的字符数,单词数,行数
例如我们可以把下面的文本保存到:word.txt 。
retirement anxiety spreads among the one percent report: green monday a boon for online shopping 5 lesser-known ways to boost your credit score ps c:powershell> get-content .word.txt | measure -line -word -character lines words characters property ----- ----- ---------- -------- 3 23 141
比较对象
有时需要比较前后两个时间段开启了那些进程,服务状态有什么变化。类似这样的工作可以交给compare-object。
比较不同的时间段
可以先将所有开启的进程信息快照保存到一个变量中,过一段时间,再保存一份新的进程快照,然后就可以通过compare-object进行对比了。
ps c:powershell> $before=get-process ps c:powershell> $after=get-process ps c:powershell> compare-object $before $after inputobject sideindicator ----------- ------------- system.diagnostics.process (notepad) => system.diagnostics.process (notepad) => system.diagnostics.process (acrord32)
$before 是一个数组存储了当前所有的process对象,compare-object的结果有两个列:inputobject为前后不一致的对象,sideindicator为不一致状态,=>表示新增的对象,结合上面的例子分析:在before和after的时间段有3个进程(acrord32,acrord32,prevhost)关闭了,有2个进程开启了(notepad,notepad)。
检查对象的变化
compare-object并不仅仅能比较对象组中的是否新增和减少了对象,它还可以比较每个对象的属性变化,因为它有一个参数-property 。
ps c:powershell> get-service wsearch status name displayname ------ ---- ----------- running wsearch windows search ps c:powershell> $svc1=get-service wsearch ps c:powershell> $svc1.stop() ps c:powershell> $svc2=get-service wsearch ps c:powershell> compare-object $svc1 $svc2 -property status,name status name sideindicator ------ ---- ------------- startpending wsearch => running wsearch
比较文件的内容
对于文本文件可以通过get-content进行读取,并且将文件以行为单位保存为一个数组,这时依然可以通过compare-object进行比较。下面的例子创建两个不同的文本文件,然后通过compare-object比较两个文件的get-content结果。
ps c:powershell> "hellow >> power >> shell" >a.txt >> ps c:powershell> "hollow >> shell >> linux" >b.txt >> ps c:powershell> compare-object (get-content .a.txt) (get-content .b.txt) inputobject sideindicator ----------- ------------- hollow => linux => hellow
保存快照以便后期使用
上面的例子都是把对象保存在变量中,变量有一个缺点就是一旦powershell退出或者电脑关闭变量都会消失。所以最好的方法就是把对象保存到磁盘文件中。怎样把对象序列化成一个文件,powershell提供了一条命令:export-clixml,可以完成此工作,还有一条反序列化的命令import-clixml。这样可以使compare-object的命令更方便。例如一个月前保存一个$before对象,一个月后比较都可以。
ps c:powershell> get-process | export-clixml before.xml ps c:powershell> $before=import-clixml .before.xml ps c:powershell> $after=get-process ps c:powershell> compare-object -referenceobject $before -differenceobject $after