批处理获取exe返回结果
摘要:@echo off e:\a.exe a b c IF ERRORLEVEL 1 goto error IF ERRORLEVEL 0 goto success :error echo error goto end :success echo success goto end :end :: IF %ERRORLEVEL% LEQ 1 goto ::EQU - 等于 ::NEQ - 不等于 :...
阅读全文
posted @
2009-03-20 17:03
凌度
阅读(1605)
推荐(0) 编辑
LINUX下cp -f无效问题
摘要:cp -f无效问题找到了,原来是系统使用别名,默认用了-i参数,一定要确认覆盖 .bashrc # User specific aliases and functions alias rm='rm -i' alias cp='cp -i' alias mv='mv -i'
阅读全文
posted @
2009-03-04 10:08
凌度
阅读(877)
推荐(0) 编辑