mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 13:46:00 +02:00
find: always enclose the pattern in quotes (#3983)
As mentioned in man page, should always enclose the pattern in quotes in order to protect it from expansion by the shell.
This commit is contained in:
parent
a2b988c82b
commit
d5c3d824c5
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@
|
|||
|
||||
- Find directories matching a given name, in case-insensitive mode:
|
||||
|
||||
`find {{root_path}} -type d -iname {{*lib*}}`
|
||||
`find {{root_path}} -type d -iname '{{*lib*}}'`
|
||||
|
||||
- Find files matching a path pattern:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue