返回信息流感觉太业余了,发到太专业的版面感觉有点丢人,在这偷偷问问
--如 rem This batch file must be invoked from the directory containing the exe to be profiled. If used from the IDE, do not change directories before running as a custom batch file.
rem Line count profiling takes more time than other modes. See Help about limiting the scope of profiling if profiling a large application.
@rem off
prep /om /lv %1.exe
if errorlevel 1 goto done
profile %1 %2 %3 %4 %5 %6 %7 %8 %9
if errorlevel 1 goto done
prep /m %1
if errorlevel 1 goto done
plist %1
:done
这是一条镜像帖。来源:北邮人论坛 / windows / #110511同步于 2010/4/16
该镜像源已超过 30 天没有更新,可能在源站已被删除。
Windows机器人发帖
像.bat那样的文件里边的命令算是什么代码
yarl
2010/4/16镜像同步3 回复
订阅后,新回复会通过你的通知中心匿名送达。
3 条回复
就是DOS命令……
【 在 yarl (yarl) 的大作中提到: 】
: 感觉太业余了,发到太专业的版面感觉有点丢人,在这偷偷问问
: --如 rem This batch file must be invoked from the directory containing the exe to be profiled. If used from the IDE, do not change directories before running as a custom batch file.
: rem Line count profiling takes more time than other modes. See Help about limiting the scope of profiling if profiling a large application.
: ...................