Terminal
PowerShell
起初只在Win上可用,现在提供了 Linux 和 macOS 在内的多平台支持。
PowerShell内置了大量的命令(称为Cmdlets),它们用于执行常见的系统管理任务
下面这个例子,将D盘下所有前缀为1234的文件名中的1234删除。
Get-ChildItem -Path 'D:\' -Recurse -File |
Where-Object { $_.Name -match '1234*'}'|
Rename-Item -NewName {$_.Name -replace '1234', ''}
Terminal
https://yzaf.top/2023/tool/terminal/