【 以下文字转载自 Programming 讨论区 】
【 原文由 crystalike 所发表 】
i want to run a simple script
in shell it would be.
=========================
CC_S=0
CC_E=100
CMD=echo
while [ "$CC_S" -lt "$CC_E" ]
do
$CMD -s HAHA_$CC_S
CC_S=`expr $CC_S + 1`
done
===============================
how to do this in dos/winNT batch?
there is no perl, no cygwin...