documentation

This commit is contained in:
Amber 2024-03-14 14:46:57 +01:00
parent c18feb49e6
commit 2f8c7d82c5
1 changed files with 11 additions and 1 deletions

View File

@ -46,7 +46,17 @@ vfind ~/nerd_tree/ "(.*)py" -i src
```
include the results that along the path have the name **src**.<br />
In a similar manner you can exclude paths with the option **-e**
You can include the -i more than once, for example:
```
vfind ~/nerd_tree/ "([0-9][0-9])|(^tree_(.*))" -i src -i .git
```
the above command will search for files or folders beginning with **two digits** or with the name beginning with **tree_**
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