README.md

This commit is contained in:
Amber 2024-04-08 14:24:03 +02:00
parent 98f55a65f0
commit 648432ef46
1 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ vfind ~/nerd_tree/ *py -i src
You can include the -i more than once, for example:
```
vfind ~/nerd_tree/ "([0-9][0-9])|(^tree_(.*))" -i src -i .git
vfind ~/nerd_tree/ -re "([0-9][0-9])|(^tree_(.*))" -i src -i .git
```
the above command will search for files or folders with a **two digits** name or with the name beginning with **tree_**
@ -78,5 +78,5 @@ only in the path ***src*** or ***.git***
In a similar manner you can exclude paths with the option **-e**, too in this case you can specify more than once the option -e
```
vfind ~/nerd_tree/ "(.*)py" -e src
vfind ~/nerd_tree/ -re "(.*)py" -e src
```