improve of cmpl.
[bush.git] / testing / 3.OriginalTest.dir / 5.posix / posixexp7.sub
blob2e230cf855c7fd34ad8e6d760730fde5563e37db
1 # test the effect of quotes on the WORD in the posix pattern removal operators
2 # a here document does not behave the same as double quotes
3 x=notOK
4 cat <<EOF
5 5: ${x#$'not'}
6 EOF
8 echo "${x#'not'}"
9 echo "${x#$'not'}"
11 cat <<EOF
12 5: $'not\ttoo\nbad'
13 EOF