aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-quoting/squote_in_varexp2.tests
blob: 2797725cc41c720eaefc5a404d7d4e433a9af7ac (plain)
1
2
3
4
5
6
x='\\\\'
printf Nothing:'%s\n' ${x#'\\\\'}
printf Nothing:'%s\n' "${x#'\\\\'}"
printf Nothing:'%s\n' ${x#"\\\\\\\\"}
printf Nothing:'%s\n' "${x#"\\\\\\\\"}"
echo Ok:$?