Walk a directory/Recursively: Difference between revisions

m
Forgot to change header
(Add zsh)
m (Forgot to change header)
Line 907:
<lang bash>find . | grep '.*\.txt$'</lang>
 
=={{header|UnixPipesZsh}}==
Zsh has recursive globbing. The GLOB_DOTS option allows files beginning with a period to be matched.
<lang zsh>setopt GLOB_DOTS
Anonymous user