文件名称:-:Windows控制台常用命令
文件大小:2.71MB
文件格式:ZIP
更新时间:2024-05-11 04:20:39
HTML
PS:批量重命名 Get-ChildItem | Rename-Item -NewName {...} # 简单使用 'test_' + $_.name $_.name -replace '\.txt', '.pdf' # 正则匹配:aa(bb).cc --> bb.cc $_.name -replace '.*\((.*)\)\.', '$1.' CMD:查杀进程 # 查看端口占用 netstat - ano | findstr 8888 tasklist | findstr 6244 taskkill /F /PID 6244 PS: Stop-Process -ID 6244 -Force CMD:Idea连接android模拟器 D:\dev\Nox\bin\nox_adb.exe connect 127.0.0.1:62001 代理 # Linux export http_pro