Flutter开发App的未来及其在各行业的应用潜力分析
1268
2022-09-17
PowerShell Get-Alias 对别名进行正查和反查#yyds干货盘点#
环境配置说明
Windows 21H1 PSVersion 5.1.19041.1320
Get-Alias可以对别名进行正查和反查
PS C:\Users\admin> Get-Alias foreach CommandType Name Version Source ----------- ---- ------- ------ Alias foreach -> ForEach-Object
PS C:\Users\admin> Get-Alias foreach-object Get-Alias : 此命令找不到匹配的别名,因为具有 name“foreach-object”的别名不存在。 所在位置 行:1 字符: 1 + Get-Alias foreach-object + ~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (foreach-object:String) [Get-Alias], ItemNotFoundException + FullyQualifiedErrorId : ItemNotFoundException,Microsoft.PowerShell.Commands.GetAliasCommand PS C:\Users\admin> Get-Alias -Definition foreach-object CommandType Name Version Source ----------- ---- ------- ------ Alias % -> ForEach-Object Alias foreach -> ForEach-Object
PS C:\Users\admin> help % 名称 ForEach-Object 摘要 Performs an operation against each item in a collection of input objects. ......
PS C:\Users\admin> help foreach 名称 ForEach-Object 摘要 Performs an operation against each item in a collection of input objects.
学习资料
PowerShell 版本 + 工具 PowerShell/PowerShell 51CTO社区
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~