2023-11-16 23:19:36 -05:00

7 lines
168 B
Plaintext
Executable File

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