aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-quoting/squote_in_varexp.tests
blob: 4afc521078233a06b2a7b5df930dd366cbf35a47 (plain)
1
2
3
4
5
6
7
8
9
10
x=yz
echo ${x#'y'}
echo "${x#'y'}"
echo ${x#"y"}
echo "${x#"y"}"
echo ${x%'z'}
echo "${x%'z'}"
echo ${x%"z"}
echo "${x%"z"}"
echo Ok:$?