teamcity command line interpretter : quotes are replaced -
i need run simple command line within teamcity
findstr /m /n /p /s /r /c:"goto end" d:\blabla\*
the double quote replaced , somehow doubled when teamcity calls command. resulting command
cmd.exe /c findstr /m /n /p /s /r "/c:"goto end""
which fails.
how can prevent happening? value param /c
requires param double quotes in case. thanks
put command in batch file , call passing in whatever arguments (if any) need.
whenever on windows, :)
Comments
Post a Comment