[玩转系统] PowerShell for the People:让 shell 为您服务
作者:精品下载站 日期:2024-12-14 07:43:31 浏览:15 分类:玩电脑
PowerShell for the People:让 shell 为您服务
别名只是一个简短的命令名称替代。您可以键入 ps,而不是键入 Get-Process。即使我也不能搞砸。在命令提示符下使用别名是加快工作速度并减少拼写错误的好方法。虽然我不会在脚本中输入以下内容:
gsv | ? status -eq running
在提示下,速度很快,我得到了想要的结果。但是,您无法为命令及其参数创建别名。例如,我喜欢 Select-Object 的 -First 和 -Last 参数。但我无法创建与 Select-Object -last 10 等效的别名。但是,您可以做的是围绕命令创建自己的包装器并为其添加别名。这是我为 Select-Object -Last X 编写的函数。
#requires -version 3.0
Function Select-Last {
<#
.Synopsis
Select last X number of objects
.Description
This command takes pipelined input and selects the last specified number of objects which are then written to the pipeline.
There is a trade off of convenience for performance. For a very large number processed objects, use Select-Object directly
.Example
PS C:\> dir c:\scripts\*.ps1 | sort lastwritetime | last 5
.Notes
Last Updated: 8/25/2014
Version : 0.9
.Link
Select-Object
#>
[cmdletbinding()]
Param(
[Parameter(Position=0,Mandatory,HelpMessage="How many objects do you want to get?")]
[ValidateScript({$_ -gt 0})]
[int]$Last,
[Parameter(Position=1,Mandatory,ValueFromPipeline)]
[object]$InputObject
)
Begin {
Write-Verbose -Message "Starting $($MyInvocation.Mycommand)"
Write-Verbose -Message "Selecting last $Last objects"
#initialize an array to hold all incoming objects
$data=@()
#initialize a counter
$total=0
#track when the command started in order to calculate how long the command took to complete.
$start=Get-Date
} #begin
Process {
$total++
if ($total -le $Last) {
#add each piped object to temporary array
$data+=$InputObject
}
else {
#move all items in the array up one
$data = $data[1..$Last]
#add the new item
$data+=$InputObject
}
} #process
End {
#write the results
$data
$end = Get-Date
Write-Verbose -Message "Processed $total items in $($end-$start)"
Write-Verbose -Message "Ending $($MyInvocation.Mycommand)"
} #end
}
Set-Alias -Name Last -Value Select-Last
您会注意到我的代码片段的最后一部分定义了一个名为 Last 的别名,该别名引用了该函数。但现在我可以在 PowerShell 提示符下快速轻松地使用一些东西。
dir c:\work\*.txt | sort lastwritetime | last 5
您必须找出包装 cmdlet 的最佳方法。在本例中,我将每个管道传入对象并将其添加到数组中,仅保留指定数量的项目。添加每个项目后,其他项目将在数组中“向上”移动。
请注意,便利性和性能之间可能需要权衡。该命令使用我的别名和自定义函数:
Measure-command {1..5000 | last 3}
花了 237 毫秒。而选择对象方法:
Measure-command {1..5000 | select -Last 3}
仅花费了 49 毫秒。但我敢打赌,您可能愿意接受这种权衡以节省一些打字时间。当然,如果有 Last 命令,就应该有 First 命令。
Function Select-First {
<#
.Synopsis
Select first X number of objects
.Description
This command takes pipelined input and selects the first specified number of objects which are then written to the pipeline.
.Example
PS C:\> get-process | sort WS -descending | first 5
.Notes
Last Updated: 8/25/2014
Version : 0.9
.Link
Select-Object
#>
[cmdletbinding()]
Param(
[Parameter(Position=0,Mandatory,HelpMessage="How many objects do you want to get?")]
[ValidateScript({$_ -gt 0})]
[int]$First,
[Parameter(Position=1,Mandatory,ValueFromPipeline)]
[object]$InputObject
)
Begin {
Write-Verbose -Message "Starting $($MyInvocation.Mycommand)"
Write-Verbose -Message "Selecting first $First objects"
#track when the command started in order to calculate how long the command took to complete.
$start=Get-Date
#initialize a counter
$i=0
} #begin
Process {
#add each piped object to temporary array
$i++
if ($i -le $First) {
$InputObject
}
else {
#we're done here
Write-Verbose "Limit reached"
$end = Get-Date
Write-Verbose -Message "Processed $($data.count) items in $($end-$start)"
Write-Verbose -Message "Ending $($MyInvocation.Mycommand)"
#bail out
break
}
} #process
End {
#not used
} #end
}
Set-Alias -Name First -Value Select-First
从性能角度来看,这更容易,因为我所要做的就是对管道中的对象进行计数,并在达到限制后退出。
ps | sort ws -des | first 3
在此示例中,我不仅利用了别名,还利用了位置参数,并且只需键入足够多的参数名称,以便 PowerShell 知道我想要什么。
因此,有一些方法可以使 PowerShell 对键盘更加友好,尽管这可能需要您做一些工作。下次我们会考虑另一种选择。
猜你还喜欢
- 03-30 [玩转系统] 如何用批处理实现关机,注销,重启和锁定计算机
- 02-14 [系统故障] Win10下报错:该文件没有与之关联的应用来执行该操作
- 01-07 [系统问题] Win10--解决锁屏后会断网的问题
- 01-02 [系统技巧] Windows系统如何关闭防火墙保姆式教程,超详细
- 12-15 [玩转系统] 如何在 Windows 10 和 11 上允许多个 RDP 会话
- 12-15 [玩转系统] 查找 Exchange/Microsoft 365 中不活动(未使用)的通讯组列表
- 12-15 [玩转系统] 如何在 Windows 上安装远程服务器管理工具 (RSAT)
- 12-15 [玩转系统] 如何在 Windows 上重置组策略设置
- 12-15 [玩转系统] 如何获取计算机上的本地管理员列表?
- 12-15 [玩转系统] 在 Visual Studio Code 中连接到 MS SQL Server 数据库
- 12-15 [玩转系统] 如何降级 Windows Server 版本或许可证
- 12-15 [玩转系统] 如何允许非管理员用户在 Windows 中启动/停止服务
取消回复欢迎 你 发表评论:
- 精品推荐!
-
- 最新文章
- 热门文章
- 热评文章
[影视] 黑道中人 Alto Knights(2025)剧情 犯罪 历史 电影
[古装剧] [七侠五义][全75集][WEB-MP4/76G][国语无字][1080P][焦恩俊经典]
[实用软件] 虚拟手机号 电话 验证码 注册
[电视剧] 安眠书店/你 第五季 You Season 5 (2025) 【全10集】
[电视剧] 棋士(2025) 4K 1080P【全22集】悬疑 犯罪 王宝强 陈明昊
[软件合集] 25年6月5日 精选软件22个
[软件合集] 25年6月4日 精选软件36个
[短剧] 2025年06月04日 精选+付费短剧推荐33部
[短剧] 2025年06月03日 精选+付费短剧推荐25部
[软件合集] 25年6月3日 精选软件44个
[剧集] [央视][笑傲江湖][2001][DVD-RMVB][高清][40集全]李亚鹏、许晴、苗乙乙
[电视剧] 欢乐颂.5部全 (2016-2024)
[电视剧] [突围] [45集全] [WEB-MP4/每集1.5GB] [国语/内嵌中文字幕] [4K-2160P] [无水印]
[影视] 【稀有资源】香港老片 艺坛照妖镜之96应召名册 (1996)
[剧集] 神经风云(2023)(完结).4K
[剧集] [BT] [TVB] [黑夜彩虹(2003)] [全21集] [粤语中字] [TV-RMVB]
[实用软件] 虚拟手机号 电话 验证码 注册
[资源] B站充电视频合集,包含多位重量级up主,全是大佬真金白银买来的~【99GB】
[影视] 内地绝版高清录像带 [mpg]
[书籍] 古今奇书禁书三教九流资料大合集 猎奇必备珍藏资源PDF版 1.14G
[电视剧] [突围] [45集全] [WEB-MP4/每集1.5GB] [国语/内嵌中文字幕] [4K-2160P] [无水印]
[剧集] [央视][笑傲江湖][2001][DVD-RMVB][高清][40集全]李亚鹏、许晴、苗乙乙
[电影] 美国队长4 4K原盘REMUX 杜比视界 内封简繁英双语字幕 49G
[电影] 死神来了(1-6)大合集!
[软件合集] 25年05月13日 精选软件16个
[精品软件] 25年05月15日 精选软件18个
[绝版资源] 南与北 第1-2季 合集 North and South (1985) /美国/豆瓣: 8.8[1080P][中文字幕]
[软件] 25年05月14日 精选软件57个
[短剧] 2025年05月14日 精选+付费短剧推荐39部
[短剧] 2025年05月15日 精选+付费短剧推荐36部
- 最新评论
-
- 热门tag