1. 首页
  2. 数据库
  3. 其它
  4. :Windows控制台常用命令 源码

:Windows控制台常用命令 源码

上传者: 2021-04-27 08:17:52上传 ZIP文件 2.71MB 热度 10次
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
用户评论