1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 08:22:08 +02:00

find: add searching multiple patterns simultaneously (#2589)

This commit is contained in:
Alexander Berezovsky 2018-11-15 13:33:41 -08:00 committed by Starbeamrainbowlabs
parent ebb5439666
commit 3a97f27dbe

View file

@ -6,6 +6,10 @@
`find {{root_path}} -name '{{*.ext}}'`
- Find files by matching multiple patterns:
`find {{root_path}} -name '{{*pattern_1*}}' -or -name '{{*pattern_2*}}'`
- Find directories matching a given name:
`find {{root_path}} -type d -name {{*lib*}}`