squote_in_varexp2.tests 168 B

123456
  1. x='\\\\'
  2. printf Nothing:'%s\n' ${x#'\\\\'}
  3. printf Nothing:'%s\n' "${x#'\\\\'}"
  4. printf Nothing:'%s\n' ${x#"\\\\\\\\"}
  5. printf Nothing:'%s\n' "${x#"\\\\\\\\"}"
  6. echo Ok:$?