I want pass specific parameters(aaa|bbb|ccc) but it's not working.
Here's what the command line looks like:
test.bat aaa|bbb|ccc
and test.bat looks like:
echo %1
but its not working cuz test.bat receive only 'aaa'. how can I pass whole parameter 'aaa|bbb|ccc'?
ps. I must use this format : 'aaa|bbb|ccc' there is no option to change like aaa_bbb_ccc.. etc.