* 端口相关
netstat -ano | findstr 8080 查看 8080 端口占用情况
* 进程相关
tasklist | findstr QQ.exe 查找 QQ.exe 进程
taskkill /f /pid [pid] 通过 pid 结束进程
taskkill /f /im [name] 通过进程名结束进程
* 文件相关
move * ../ 移动当前目录所有文件到上层目录
netstat -ano | findstr 8080 查看 8080 端口占用情况
tasklist | findstr QQ.exe 查找 QQ.exe 进程
taskkill /f /pid [pid] 通过 pid 结束进程
taskkill /f /im [name] 通过进程名结束进程
move * ../ 移动当前目录所有文件到上层目录
转载于:https://www.cnblogs.com/lschuan/p/11358497.html