busybox/shell/hush_test/hush-quoting/squote_in_varexp2.tests

5 lines
90 B
Plaintext
Raw Normal View History

x='\\\\'
printf Nothing:'%s\n' ${x#'\\\\'}
printf Nothing:'%s\n' "${x#'\\\\'}"
echo Ok:$?