
May 29th, 2006, 08:32 PM
|
|
Contributing User
|
|
Join Date: Mar 2006
Posts: 263
  
Time spent in forums: 2 Days 5 h 24 m 51 sec
Reputation Power: 10
|
|
Quote: | Originally Posted by SimonJM It's been a long old time, but I think what you are after is %1 (for 1st parm) |
thx
what about I don't how many inputs they input? The code below only print out the number, but I also want the input too..
if i type > hello a b c d e
I want to get a b c d e back too
hello.bat
BATCH Code:
Original
- BATCH Code |
|
|
|
FOR /L %%A IN (1,1,10) DO (
echo "-> %%A <-"
)
|