vote up 0 vote down star

In the following example, I want to call a child batch file from a parent batch file and pass all of the remaining parameters to the child.

C:\> parent.cmd child1 foo bar
C:\> parent.cmd child2 baz zoop
C:\> parent.cmd child3 a b c d e f g h i j k l m n o p q r s t u v w x y z

Inside parent.cmd, I need to strip %1 off the list of parameters and only pass the remaining parameters to the child script.

set CMD=%1
%CMD% <WHAT DO I PUT HERE>

I've investigated using SHIFT with %*, but that doesn't work. While SHIFT will move the positional parameters down by 1, %* still refers to the original parameters.

Anyone have any ideas? Should I just give up and install Linux?

flag

Exact duplicate? stackoverflow.com/questions/382587/… – Rob Kennedy Apr 17 at 18:54
That question was answered with code that didn't work. I added statements to my question to help clarify, and it looks like I got a solid answer from Johannes. – Dave Apr 17 at 23:29
Oh, by the way, when calling batches from other batches by all maens use call. Otherwise the calling batch file won't run further after the called batch exits. (May or may not be relevant here, just some best practices :-)) – Johannes Rössel Apr 18 at 6:44

1 Answer

vote up 2 vote down check

%* will always expand to all original parameters, sadly. But you can use the following snippet of code to build a variable containing all but the first parameter:

rem throw the first parameter away
shift
set params=%1
:loop
shift
if [%1]==[] goto afterloop
set params=%params% %1
goto loop
:afterloop

I think it can be done shorter, though ... I don't write these sort of things very often :)

Should work, though.

link|flag
Wow, slick approach. Thanks! – Dave Apr 17 at 23:26
I've shortened it a bit; there was some redundancy :) – Johannes Rössel Apr 18 at 5:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.