recutils #2

Merged
netstat merged 14 commits from recutils into master 2025-03-25 21:53:43 +00:00
Showing only changes of commit 1d35d54af1 - Show all commits

View File

@ -26,11 +26,20 @@ Ask what types of _rec_ords it contains:
recinf network.rec
```
Select with `recsel`, then specify the type of record.
```sh
recsel network.rec --type router
recsel network.rec --include-descriptors --type lxc
recsel network.rec -d -t lxc
recsel network.rec -d -t lxc --expression
```
User `-q` for a 'quick' selection, or `-e` for more precise selections.
```sh
recsel network.rec --type lxc --quick wiki
recsel network.rec --type lxc -q nginx
recsel network.rec -t lxc --expression "name ~ 'nginx'"
recsel network.rec -t lxc --expression "name = 'nginx12'"
```