Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Could anyone help me out, I have a batch file find.bat

which has a statement:

findmp %VARIABLE%

what I would like to find out is how to pass a paramater on the batch file

e.g. find.bat /C:\Test

So when called the batch file would execute:

findmp C:\Test

Can this be done in Batch?

share|improve this question

1 Answer

up vote 2 down vote accepted

can't be the first parameter?

find.bat c:\test

and inside the bat:

findmp "%1"
share|improve this answer
Cheers, that does the job perfectly – Ken May 19 '11 at 23:40
if the name have spaces remember to wrap in "" when calling find.bat "C:\test dir\other" – ariel May 19 '11 at 23:43
shall do thanks :) – Ken May 20 '11 at 0:22
That is worth being incorporated into the answer. Also "%1" should be either %1 or "%~1". – Andriy M May 20 '11 at 13:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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