Hide Forgot
Description of problem: - OpenShift's help shows single quotations. e.g.) See it looks like we should use '' for each options. ~~ $ oc rsync -h ... -c, --container='': Container within the pod --exclude='': rsync - exclude files matching specified pattern --include='': rsync - include files matching specified pattern ~~~ - However, windows command prompt treats single quotations as exactly what it is. - For example, if you run, you will get error. $ oc rsync foo bar:/tmp --strategy='tar' error: unknown strategy: 'tar' - "--strategy=tar" and "--strategy="tar""(double quotations) works fine. Version-Release number of selected component (if applicable): - oc v3.1.1.6 How reproducible: Steps to Reproduce: 1. Start windows command prompt 2. Run "oc rsync foo bar:/tmp --strategy='tar'" 3. Get error "error: unknown strategy: 'tar'" Actual results: - oc command's help should not use ''(single quotations). Expected results: - oc command's help should use "" (double quotations)
Closing due to age.