I recently saw a cpoy command in a batch script that looked like this:
copy <file> /B+ ,,/Y
I know the /B means to do a binary copy. I believe the + is just affirming the /B command, but am not sure. I know the /Y means yes to all and accepts all prompts for confirmation. I haven't been able to find anything about what the ,, is doing. I've run the command on a dummy file to see if anything changed, but I could not find a copied file anywhere.
What does copy <file> /B+ ,,/Y
do?