1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-01 17:24:50 +01:00

27368, 27369: replace one incorrect example with two correct ones

This commit is contained in:
Bart Schaefer 2009-11-10 22:16:37 +00:00
parent a3055b2363
commit b159a6bba2

View file

@ -28,7 +28,8 @@ advanced globbing:
qualifiers in parentheses after globbing expression:
ls *(*@) matches executable files/directories or symlinks
ls *(L0f.go-w.) matches all zero-length files not group or world writable
ls *(om[2]) matches the two most recently modified files
ls *(om[1,3]) matches the three most recently modified files
ls *(om[2]) matches the second most recently modified file
null command shorthands:
"< file" is same as "more <file"
"> file" is same as "cat >file"