repo.or.cz
/
bush.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
improve of cmpl.
[bush.git]
/
testing
/
3.OriginalTest.dir
/
5.posix
/
posixexp7.sub
blob
2e230cf855c7fd34ad8e6d760730fde5563e37db
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
7
8
echo "${x#'not'}"
9
echo "${x#$'not'}"
10
11
cat <<EOF
12
5: $'not\ttoo\nbad'
13
EOF