Board logo

标题: [问题求助] 获取PowerShell别名中的带item的命令 [打印本页]

作者: 5i365    时间: 2022-2-19 13:45     标题: 获取PowerShell别名中的带item的命令

执行Get-Alias命令后, 会有最下面的输出, 我想获取name那一列中, 包含item的命令, 用下面的几种代码都取不到值, 求高手支招, 感谢!!

(Get-Alias).name | ?{ $_ -contains "item" }
(Get-Alias).name | ?{ $_ -like "*item*" }
Get-Alias | out-string | ?{ $_ -like "*item*" }
________________________________________________________________________________

CommandType     Name                                               Version    Source                                                                           
-----------     ----                                               -------    ------                                                                           
Alias           % -> ForEach-Object                                                                                                                           
Alias           ? -> Where-Object                                                                                                                              
Alias           ac -> Add-Content                                                                                                                              
Alias           asnp -> Add-PSSnapin                                                                                                                           
Alias           cat -> Get-Content                                                                                                                             
Alias           cd -> Set-Location
...........

_________________________________________________________________________________
期待最后的结果类似:

cp -> Copy-Item                                                                                                                                
cpi -> Copy-Item                                                                                                                              
cpp -> Copy-ItemProperty   
.........

_________________________________________________________________________________
最好能交换前后位置改进一下,按字母顺序先后排列, 结果类似:
Copy-Item -> cp                                                                                                                                
Copy-Item -> cpi                                                                                                                              
Copy-ItemProperty -> cpp
.........
作者: 5i365    时间: 2022-2-19 14:13

本帖最后由 5i365 于 2022-2-19 14:26 编辑

自己乱搞, 能得到第一种结果,但是不完美, 有空行, 交换前后的还没有搞定
(Get-Alias | Out-String) -split '\n' -like "*item*" -replace 'Alias\s+'
作者: 5i365    时间: 2022-2-19 14:35

加了空行过滤还是有空行, 怪了
(Get-Alias | Out-String) -split '\n' -like "*item*" -replace 'Alias\s+' | ? { $_.trim() -ne "" } | Out-File aaa.txt
作者: idwma    时间: 2022-2-19 16:53

本帖最后由 idwma 于 2022-2-19 17:04 编辑

可以多用用对象
很多时候可以用|fl *查看可用对象,比如gal|fl *
  1. gal|?{$_.Definition -match 'item'}|%{$_.Definition+' -> '+$_.name}
复制代码

作者: 5i365    时间: 2022-2-19 17:17

回复 4# idwma


大侠好, 我刚刚用绕弯的路了, 也实现了, 但是导出的文件前三行有空行, 想知道问题出在了哪, 跳过前三行, 是因为, 前面的三行没用

cd $HOME\Desktop
(Get-Alias | Out-String) -replace 'Alias\s+' -split '\r\n' |
select -skip 3 |
foreach{
        $_.Trim() -Replace '(.*) -> (.*)', '$2 -> $1'
} |
sort |
Out-File A.txt
作者: idwma    时间: 2022-2-19 17:37

回复 5# 5i365

后面的空行排序后跑前面去了
  1. (Get-Alias | Out-String) -replace 'Alias\s+' -split '\r\n' -notmatch '^\s*$'|
  2. select -skip 2 |
  3. foreach{
  4.         $_.Trim() -Replace '(.*) -> (.*)', '$2 -> $1'
  5. } |
  6. sort |
  7. Out-File A.txt
复制代码

作者: 5i365    时间: 2022-2-19 17:50

回复 6# idwma


    多谢, 有点晕了 这里的  -split '\r\n'   下面是的贴子要 '`n'  ?
http://www.bathome.net/thread-61653-1-1.html
作者: idwma    时间: 2022-2-19 18:06

回复 7# 5i365


\r\n
`r`n
晕在什么地方?
作者: 5i365    时间: 2022-2-19 18:22

回复 8# idwma


    晕在, 我认为两个不一样?
是不是, 一个用在.split()的后面, 一个用在-split 的后面  ?
作者: idwma    时间: 2022-2-19 22:06

回复 9# 5i365


有关键词的疑问可以先翻一下文档呀有最权威的说明了
  1. https://docs.microsoft.com/zh-cn/powershell/module/microsoft.powershell.core/about/about_split
  2. https://docs.microsoft.com/zh-cn/dotnet/api/system.string.split
复制代码

作者: 5i365    时间: 2022-2-20 09:42

回复 10# idwma


    多谢大侠指引
作者: 5i365    时间: 2022-2-20 12:13

本帖最后由 5i365 于 2022-2-20 12:16 编辑

回复 4# idwma


    大侠好, 又卡壳了, 我想输出N个字符串的别名, 写了下面的代码, $_ 成了谍中谍了, 请教怎么改?
红色字是一个循环, 其它两个  Content  和  Process 也要循环, 用$_ 肯定不行了

cd "$HOME\Desktop"
@(
        "item"
        "Content"
        "rocess"
) |
%{
        Get-Alias | ?{ $_.Definition -match 'item' } | %{ $_.Definition + ' -> ' + $_.name } | Out-File "item.txt"
}
作者: 5i365    时间: 2022-2-20 13:11

回复 10# idwma


    自己搞定了
  1. cd "$HOME\Desktop"
  2. @(
  3. "item"
  4. "Content"
  5. "Process"
  6. ) |
  7. %{
  8. $a = $_
  9. Get-Alias | ?{ $_.Definition -match $a } | %{ $_.Definition + ' -> ' + $_.name } | Out-File "$a.txt"
  10. }
复制代码

作者: 5i365    时间: 2022-2-20 21:16

回复 10# idwma


    大侠好, 我楼上写的代码, 现在, 我想反过来, 排除数组  "item","Content","Process"     中所包含的那些项, 将余下的导出为1个abc.txt文件, 应该怎么改? 试了一下, 改不成功.
作者: idwma    时间: 2022-2-20 21:48

回复 14# 5i365


    用notmatch
作者: 5i365    时间: 2022-2-21 06:09

回复 15# idwma


    前面测试时想到了-notmatch ,刚刚又想到了Add-Content, 但是结果还是没有过滤掉关键字, 关且排序也不是整体的
  1. cd "$HOME\Desktop"
  2. @(
  3. "item"
  4. "Content"
  5. "Process"
  6. ) |
  7. %{
  8. $a = $_
  9. Get-Alias | ?{ $_.Definition -notmatch $a } | %{ $_.Definition + ' -> ' + $_.name } | Add-Content "abc.txt"
  10. }
复制代码

作者: idwma    时间: 2022-2-21 12:56

  1. cd "$HOME\Desktop"
  2. @(
  3. "item"
  4. "Content"
  5. "Process"
  6. ) -join '|' |
  7. %{
  8. $a = $_
  9. Get-Alias | ?{ $_.Definition -notmatch $a } | %{ $_.Definition + ' -> ' + $_.name } | Add-Content "abc.txt"
  10. }
复制代码

作者: 5i365    时间: 2022-2-21 13:44

回复 17# idwma


    感谢!
用|合并之后是   item|Content|Process  不用加''吗?
另外, 合并的文件没有按A-Z的顺序排序,之后用 gc | sort | sc  的方法有点麻烦, 有没有更好的办法?
作者: idwma    时间: 2022-2-21 13:57

回复 18# 5i365
  1. @(
  2. "item"
  3. "Content"
  4. "Process"
  5. ) -join '|' |
  6. %{
  7. $a = $_
  8. Get-Alias |sort{$_.Definition}| ?{ $_.Definition -notmatch $a } | %{ $_.Definition + ' -> ' + $_.name } | Add-Content "abc.txt"
  9. }
复制代码

作者: 5i365    时间: 2022-3-25 07:00

本帖最后由 5i365 于 2022-3-25 07:10 编辑

回复 19# idwma


   大侠好, 我把上面改了一下, 定义为了一个函数, 想在显示结果后, 打开在线帮助, 但是死活搞不定, 好像哪个弯没转过来
  1. function gah ($str)
  2. {
  3.         gal |
  4.         where { $_.Name -eq $str } |
  5.         FT -Prop Definition, Name, helpuri -Auto
  6.         start $_.helpuri
  7. }
  8. gah sc
复制代码

第二种方法, 反过来了, 可以打开帮助, 但是显示的属性表却不对了

  1. function gah ($str)
  2. {
  3.         gal |
  4.         where {
  5.                 if ($_.Name -eq $str)
  6.                 {
  7.                         $_ | FT -Prop Definition, Name, helpuri -Auto
  8.                         start $_.helpuri
  9.                 }
  10.         }
  11. }
  12. gah sc
复制代码

作者: idwma    时间: 2022-3-25 14:40

回复 20# 5i365


    为什么要省掉foreach?
作者: 5i365    时间: 2022-3-25 15:57

回复 21# idwma


   多谢大侠指教




欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2