2022.06.05 20:31:58
($_.BaseName+”.mp4”) } dir * | foreach { Rename-Item $_ -NewName
首先找到占用端口的进程,然后终止进程:
5554" # 假设5554端口被占用
netstat -nao | findstr "5076 -f # 结束占用进程 taskkill -pid
如果不指定Path
则默认查找当前目录。查找支持正则表达式。
Get-ChildItem -Path C:\Users\JohnDoe -Filter *.txt -Recurse
Get-ChildItem -Directory | ForEach-Object {
Join-Path $_.FullName ".git"
$gitDir = if (Test-Path $gitDir) {
Set-Location $_.FullName
git push
} }