1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-23 16:40:24 +02:00

31436: document KSH_GLOB doesn't support recursive directories

This commit is contained in:
Peter Stephenson 2013-05-30 16:40:06 +01:00
parent 95c044372a
commit aa0875daa1
3 changed files with 21 additions and 2 deletions

View file

@ -1957,10 +1957,12 @@ item(tt(@LPAR())...tt(RPAR()))(
Match the pattern in the parentheses. (Like `tt(LPAR())...tt(RPAR())'.)
)
item(tt(*LPAR())...tt(RPAR()))(
Match any number of occurrences. (Like `tt(LPAR())...tt(RPAR()#)'.)
Match any number of occurrences. (Like `tt(LPAR())...tt(RPAR()#)',
except that recursive directory searching is not supported.)
)
item(tt(PLUS()LPAR())...tt(RPAR()))(
Match at least one occurrence. (Like `tt(LPAR())...tt(RPAR()##)'.)
Match at least one occurrence. (Like `tt(LPAR())...tt(RPAR()##)',
except that recursive directory searching is not supported..)
)
item(tt(?LPAR())...tt(RPAR()))(
Match zero or one occurrence. (Like `tt(LPAR()|)...tt(RPAR())'.)