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