1. win32批处理下,另开一个console执行进程X

使用start [/K|/C],示例:

//--------------------------------------------------------------------------------------
//example 1: 新开console,执行dir命令完毕后,不自动关闭console
start cmd /K dir 

//--------------------------------------------------------------------------------------
//example 2: 新开console,执行dir命令完毕后,自动关闭console
start cmd /C dir 

//--------------------------------------------------------------------------------------
//example 3: 完整示例
start /D D:\demo-dev\dev_native\demoICE\x64\Release cmd /K demoICE.exe server
start /D D:\demo-dev\dev_native\demoICE\x64\Release cmd /K demoICE.exe client

注意:start命令是不会拥塞当前控制台的.bat执行的。

2. 指定start的启动目录

使用start /D,示例如下:

start /D c:\

3. 与linux后台运行(&)等价的start操作

使用start /b,示例如下:

in win32 console:
start /b iperf.exe > c:\iperf_multicast_server_logfile.txt

in linux console:
/root/iperf1.7 > /root/iperf_multicast_client_logfile.txt &

参考文献:http://blog.csdn.net/u012377333/article/details/41824787

4. 使用python脚本同时启动多console进程

参考文献:

  1. https://stackoverflow.com/questions/6469655/how-can-i-spawn-new-shells-to-run-python-scripts-from-a-base-python-script
  2. https://stackoverflow.com/questions/15899798/subprocess-popen-in-different-console
  3. https://docs.python.org/2/library/subprocess.html

示例如下:

//example 1:
from subprocess import Popen, CREATE_NEW_CONSOLE
Popen('cmd', creationflags=CREATE_NEW_CONSOLE)

//--------------------------------------------------------------------------------------
//example 2:
from sys import executable
from subprocess import Popen, CREATE_NEW_CONSOLE
Popen([executable, 'script.py'], creationflags=CREATE_NEW_CONSOLE)

//--------------------------------------------------------------------------------------
//example 3:
from subprocess import Popen, CREATE_NEW_CONSOLE
Popen('cmd dir', creationflags=CREATE_NEW_CONSOLE, cwd='c:\\')
Popen(['cmd', '/C', 'dir'], creationflags=CREATE_NEW_CONSOLE, cwd='c:\\')

//--------------------------------------------------------------------------------------
//example 4:
from shlex import split
from subprocess import Popen, CREATE_NEW_CONSOLE
cmd_1 = "cmd /K demoICE.exe server";
cmd_2 = "cmd /K demoICE.exe client";
args_1 = split(cmd_1);
args_2 = split(cmd_2);
Popen(args_1, creationflags=CREATE_NEW_CONSOLE, cwd="D:\\demo-dev\\dev_native\\demoICE\\x64\\Release");
Popen(args_2, creationflags=CREATE_NEW_CONSOLE, cwd="D:\\demo-dev\\dev_native\\demoICE\\x64\\Release");
posted @ 2019-04-29 21:45 neoragex2002 阅读(643) 评论(1) 推荐(0) 编辑
摘要: SI是个好东西,但是源代码窗口左边的符号窗口的默认宽度实在是太小,每次打开一个新的源码窗口都要重新拖放调整,很烦人。下面是一劳永逸调整Symbol Window宽度的方法。 其他技巧参考:http://blog.csdn.net/phunxm/article/details/11713823 阅读全文
posted @ 2017-06-15 13:01 neoragex2002 阅读(2205) 评论(0) 推荐(0) 编辑
摘要: Completely uninstalling Astrill fixed the issue but this solution is not what I want. Astrill support answered (within 2 hours) saying the correct fix 阅读全文
posted @ 2017-05-27 20:58 neoragex2002 阅读(423) 评论(0) 推荐(0) 编辑
摘要: SSSR进一步调优,对标寒霜级技术水平,实现方式为Direct3D 11+自主实现实时渲染引擎,方法为对比测试。实现已经有段时间了,还是简要更新下吧。以下画面中的SSSR效果全部采用1:4 resolves。如下4个图,全1080p,分别是:"全屏tracing+全屏resolve"(2个图) v. 阅读全文
posted @ 2016-12-23 23:12 neoragex2002 阅读(4525) 评论(0) 推荐(0) 编辑
摘要: 自从CE3首倡SSR以来,发展至今,其质量与当年早已不能同日而语。不仅强调超越性的质量,而且强调超越性的性能。乘着周末有空撸了撸,以下是增强型实时SSR结果图。与我原来的SSR原始实现相比,新的增强型实现采样数量 x 1/8,质量提升8x,在没有特别重度优化的前提下,1080p 1:4 resolv 阅读全文
posted @ 2016-12-12 09:59 neoragex2002 阅读(5250) 评论(0) 推荐(1) 编辑
摘要: 自主实现的实时渲染引擎,对标对象ue4/ce5,超越u3d/klayge。MK2版本侧重于质量与速度的均衡,以下上传示范均为实测截图,均为全分辨率(网页上显示缩小了)1080p/60fps。 阅读全文
posted @ 2016-11-20 13:55 neoragex2002 阅读(1457) 评论(1) 推荐(0) 编辑
摘要: 完全自主实现,bloat-free。再次声明,这不是UE、U3D、CE、KlayGE! 老规矩,先贴图。后面有时间再补充描述。 1. 支持多跳间接全局光照2. 支持vxao/so、vxdiff/spec等全功能3. 支持近乎完美的全局遮蔽,屏幕空间遮蔽可以直接扔了4. 全局环境光照与基于图像的光照集 阅读全文
posted @ 2016-10-07 23:18 neoragex2002 阅读(1558) 评论(0) 推荐(0) 编辑
摘要: 快速集成DR+AO+SVO GI,针对中等场景粒度,初步具备全功能,暂未重度优化。附测试对比图。 阅读全文
posted @ 2016-09-13 14:24 neoragex2002 阅读(1121) 评论(0) 推荐(0) 编辑
摘要: 功能已实现,初步集成进来,暂未进行重度优化。但GI的效果已很明显。这里特地给出了开启实时GI前后的效果对比,比对场景如下:1、只有直接光照(方向光源)的场景、2在直接光照(方向光源)基础上开启了实时GI的场景。 阅读全文
posted @ 2016-09-13 01:09 neoragex2002 阅读(1545) 评论(0) 推荐(0) 编辑
摘要: 在Windows 10的系统策略中,驱动器盘符的网络访问是默认关闭的,用管理员权限打开注册表,找到HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\system,然后添加DWORD值(32值),命名为"Loca 阅读全文
posted @ 2016-07-26 00:17 neoragex2002 阅读(325) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示